prompt stringlengths 1 63.6k | completion stringlengths 1 53.1k |
|---|---|
I'm using Windows 7 & Debian Wheezy,and samba is the software that I use to share the folders/files for Linux & Windows. The issue is one of my users(nv) cannot login to her folder in Linux using his windows credentials(the password keep prompt).But If I'm using my windows password she can access to her linux folder.But it is a temporary solution as when she restart the pc,the password authentication will prompt again. this is my smb.conf file: ================================================================================================================== # # Sample configuration file for the Samba suite for Debian GNU/Linux. # # # This is the main Samba configuration file. You should read the # smb.conf(5) manual page in order to understand the options listed # here. Samba has a huge number of configurable options most of which # are not shown in this example # # Any line which starts with a ; (semi-colon) or a # (hash) # is a comment and is ignored. In this example we will use a # # for commentary and a ; for parts of the config file that you # may wish to enable # # NOTE: Whenever you modify this file you should run the command # "testparm" to check that you have not made any basic syntactic # errors. # #======================= Global Settings ======================= [global] ## Browsing/Identification ### # Change this to the workgroup/NT-domain name your Samba server will part of workgroup = NTA-MONITOR # Realm is the full name of the AD domain. realm = NTA-MONITOR.AD.NTA-MONITOR.COM # The client ldap sasl wrapping defines whether ldap traffic will be signed or signed and encrypted (sealed) client ldap sasl wrapping = sign # server string is the equivalent of the NT Description field server string = %h server # Windows Internet Name Serving Support Section: # WINS Support - Tells the NMBD component of Samba to enable its WINS Server wins support = no # WINS Server - Tells the NMBD components of Samba to be a WINS Client # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both wins server = 192.168.124.200 # This will prevent nmbd to search for NetBIOS names through DNS. dns proxy = no # What naming service and in what order should we use to resolve host names # to IP addresses name resolve order = lmhosts host wins bcast #### Networking #### # The specific set of interfaces / networks to bind to # This can be either the interface name or an IP address/netmask; # interface names are normally preferred interfaces = 192.168.120.106/24 127.0.0.1/8 # Only bind to the named interfaces and/or networks; you must use the # 'interfaces' option above to use this. # It is recommended that you enable this feature if your Samba machine is # not protected by a firewall or is a firewall itself. However, this # option cannot handle dynamic or non-broadcast interfaces correctly. bind interfaces only = true hosts allow = 192.168.120.0/24 127.0.0.1 #### Debugging/Accounting #### # This tells Samba to use a separate log file for each machine # that connects log file = /var/log/samba/log.%m # Put a capping on the size of the log files (in Kb). max log size = 1000 # If you want Samba to only log through syslog then set the following # parameter to 'yes'. syslog only = no # We want Samba to log a minimum amount of information to syslog. Everything # should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log # through syslog you should set the following parameter to something higher. syslog = 0 # Do something sensible when Samba crashes: mail the admin a backtrace panic action = /usr/share/samba/panic-action %d ####### Authentication ####### # "security = user" is always a good idea. This will require a Unix account # in this server for every user accessing the server. See # /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html # in the samba-doc package for details. security = domain # You may wish to use password encryption. See the section on # 'encrypt passwords' in the smb.conf(5) manpage before enabling. encrypt passwords = true # If you are using encrypted passwords, Samba will need to know what # password database type you are using. passdb backend = tdbsam obey pam restrictions = yes guest account = nobody guest ok = no invalid users = root scans lookup password server = KLDC01 username map = /etc/samba/usermap.txt # This boolean parameter controls whether Samba attempts to sync the Unix # password with the SMB password when the encrypted SMB password in the # passdb is changed. ; unix password sync = no # For Unix password sync to work on a Debian GNU/Linux system, the following # parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for # sending the correct chat script for the passwd program in Debian Sarge). passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\sUNIX\spassword:* %n *Retype\snew\sUNIX\spassword:* %n *password\supdated\ssuccessfully* . # This boolean controls whether PAM will be used for password changes # when requested by an SMB client instead of the program listed in # 'passwd program'. The default is 'no'. ; pam password change = no ########## Domains ########### # Is this machine able to authenticate users. Both PDC and BDC # must have this setting enabled. If you are the BDC you must # change the 'domain master' setting to no # domain logons = no # # The following setting only takes effect if 'domain logons' is set # It specifies the location of the user's profile directory # from the client point of view) # The following required a [profiles] share to be setup on the # samba server (see below) ; logon path = \\%N\profiles\%U # Another common choice is storing the profile in the user's home directory ; logon path = \\%N\%U\profile # The following setting only takes effect if 'domain logons' is set # It specifies the location of a user's home directory (from the client # point of view) ; logon drive = H: ; logon home = \\%N\%U # The following setting only takes effect if 'domain logons' is set # It specifies the script to run during logon. The script must be stored # in the [netlogon] share # NOTE: Must be store in 'DOS' file format convention ; logon script = logon.cmd # This allows Unix users to be created on the domain controller via the SAMR # RPC pipe. The example command creates a user account with a disabled Unix # password; please adapt to your needs ; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u ########## Printing ########## # If you want to automatically load your printer list rather # than setting them up individually then you'll need this load printers = no # lpr(ng) printing. You may wish to override the location of the # printcap file printing = bsd printcap name = /etc/printcap # CUPS printing. See also the cupsaddsmb(8) manpage in the # cupsys-client package. ; printing = cups ; printcap name = cups # When using [print$], root is implicitly a 'printer admin', but you can # also give this right to other users to add drivers and set printer # properties ; printer admin = @ntadmin ############ Misc ############ # Using the following line enables you to customise your configuration # on a per machine basis. The %m gets replaced with the netbios name # of the machine that is connecting ; include = /home/samba/etc/smb.conf.%m # Most people will find that this option gives better performance. # See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html # for details # You may want to add the following on a Linux system: # SO_RCVBUF=8192 SO_SNDBUF=8192 socket options = IPTOS_LOWDELAY TCP_NODELAY SO_SNDBUF=4096 SO_RCVBUF=4096 # The following parameter is useful only if you have the linpopup package # installed. The samba maintainer and the linpopup maintainer are # working to ease installation and configuration of linpopup and samba. ; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' & # Domain Master specifies Samba to be the Domain Master Browser. If this # machine will be configured as a BDC (a secondary logon server), you # must set this to 'no'; otherwise, the default behavior is recommended. domain master = no local master = no preferred master = no browse list = no lm announce = no # Some defaults for winbind (make sure you're not using the ranges # for something else.) ; idmap uid = 10000-20000 ; idmap gid = 10000-20000 ; template shell = /bin/bash ; ; The following was the default behaviour in sarge ; but samba upstream reverted the default because it might induce ; performance issues in large organizations ; See #368251 for some of the consequences of *not* having ; this setting and smb.conf(5) for all details ; ; winbind enum groups = yes ; winbind enum users = yes restrict anonymous = 2 os level = 0 ; Name mangling options preserve case = yes short preserve case = yes ; This boolean parameter controlls whether Samba attempts to sync. the Unix ; password with the SMB password when the encrypted SMB password in the ; /etc/samba/smbpasswd file is changed. unix password sync = false #======================= Share Definitions ======================= [homes] # comment = Home Directories browseable = no # By default, the home directories are exported read-only. Change next # parameter to 'yes' if you want to be able to write to them. writable = yes # File creation mask is set to 0700 for security reasons. If you want to # create files with group=rw permissions, set next parameter to 0775. # create mask = 0700 # Directory creation mask is set to 0700 for security reasons. If you want to # create dirs. with group=rw permissions, set next parameter to 0775. # directory mask = 0700 # Restrict access to home directories # to the one of the authenticated user # This might need tweaking when using external authentication schemes # valid users = %S follow symlinks = no ===================================================================================================== Please advice.Thanks in advance. -newbie- | I notice there is no smbd is running at my server.Re-install back the samba & makesure the nmbd is running. smbd is running. Thanks |
Hi all, How can I set up my kids computer so that the only sites they can visit are sites that we explicitly approve? I have looked at Dans Guardian and e2guardian but the documentation is both limited and way over my knowledge level. chadrick | Uninstall resolvconf and set NetworkManager to not update /etc/resolv.conf [1] then delete /etc/resolv.conf and list all approved sites with the correct IP addresses in /etc/hosts [2] [1] https://wiki.archlinux.org/index.php/Re ... orkManager [2] hosts(5) Or use https://packages.debian.org/jessie/privoxy |
Hi all, I am confused about how to find packages with aptitude. If I use the shell to type "aptitude search nethack" then I get a list of several nethack versions from which to choose. If I use the aptitude GUI and type Ctrl-T and then arrow over to the search option and type in "nethack" and hit Enter, the only option that I see is nethack-spoilers. Why do I not see all of the other nethack options? chadrick | press 'n' |
Hi folks, Running Debian 8 with smplayer2 0.8.0. "Short jump" is supposed to be tuneable. I have it set to 3 seconds, but jump length is seemingly random from 10-13 seconds. Thanks! | smplayer2 != smplayer Since smplayer2 is not available in Debian at all, this raises the question of where it came from. Also, any development on smplayer2 died quite a while ago, I think you would be better off using either the stock smplayer 14.9 in Jessie, or even the latest 16.1.0 release from the MX 15 test repository. |
I am trying to stream audio from one machine to several others via pulseaudio. Following a bit of digging, I configured the "sender" with: load-module module-null-sink sink_name=rtp load-module module-rtp-send source=rtp.monitor rate=48000 channels=2 format=s16be ..and the "listeners" with: load-module module-rtp-recv Then, playing on the sender, and using PulseAudio Volume Control /Playback to set "Null Output", my listeners all start working as expected. The outstanding problem is that the sender is silent - nothing from its speakers. Perhaps not surprising after the "Null" setting above. Is is possible to stream like this and also listen on the sender at the same time - if so how? Thanks for any help. | Maybe like this? https://wiki.archlinux.org/index.php/Pu ... 2F_devices |
Hi All, I think I basically need to know whether it's possible to copy a partition whilst converting inode size, or if I need to create a new partition and copy the contents. To give you the back story.. I have a system with 1 SSD and a raid array of 4 physical disks. One of the raid disks died, so I swapped it out, only to find the system wouldn't boot (had no bootloader?). I fired up a live session, and tried grub-install, but get an error like "The file /boot/grub/stage1 not read correctly". Looking into it, it looks like the problem discussed here which is basically something to do with the partition having an inode size of 256 instead of 128. Taking a step back for a moment.. I can't really remember installing this system, but is it possible I partitioned the SSD to ext4, with a default inode size of 256, then when the installer tried to install grub, it basically refused to install it on the SSD, so offered to install it on one of the raid disks, which happens to be the disk that died? So until now, unbeknown to me, the bootloader has been on one of my raid disks, while the root (bootable?) partition is on the SSD. That's my best guess as to what's gone wrong anyway.. Anyhow, currently this system has the SSD with the small bootable partition with an inode size of 256. As luck would have it, the new raid disk is sitting there not doing anything yet, so I have the space needed to copy that partition or it's contents onto the new raid disk. So the question is, can I convert the inode size whilst copying the partition? Or do I need to just clone the partition, then create a new one with the correct inode size, then copy the contents of the old partition to the new one? In the latter case, is there any hidden secret sauce that won't be copied with `cp -R` or so? I mean, if I just create a partition with the correct inode size, and flag it bootable, then `cp -R` from the old partition to this new one, will it be functionally the same? or is there something special I need to do because this is the root OS partition? Thanks in advance. | Are you using legacy grub? Grub2 works fine with an inode size of 256. |
I want to make sure that no package from jessie-backports is installed without my explicit consent. Here's what I did so far: Code: Select all################################# ############ jessie ############# ################################# Package: * Pin: release o=jessie,a=*,l=*,c=* Pin-Priority: 900 ################################# ####### jessie-backports ######## ################################# Package: * Pin: release o=jessie-backports,a=*,l=*,c=* Pin-Priority: 1 Is that the correct way to do it? I ask this because I just opened Synaptic and after searching for fglrx the selected version was from jessie-backports, and in Synaptic's preferences it said to look for the highest version. I don't want that. Also, how is your synaptic preferences set? Under the tab "Distribution", mine was set as "Always Prefer the Highest version". I've set it to "Prefer versions from Stable". | WeLoveDebian wrote:I want to make sure that no package from jessie-backports is installed without my explicit consent That is the default setting. jessie-backports has an APT pin value of 100 so that packages must be explicitly targetted for installation but will then subsequently upgrade themselves from that repository (ie, "NotAutomatic: yes" & "ButAutomaticUpgrades: yes"). See apt_preferences(5) I don't know about synaptic, I never use it. |
I just updated Iceweasel (Wheezy 7.8 32 bit) and then checked if the Flash Plugin was up to date. It is not. So I tried to update the plugin using Code: Select allupdate-flashplugin-nonfree --install and nothing downloads. What do I do now? | http://forums.debian.net/viewtopic.php?f=16&t=126261 |
Hello, I noticed weird behavior with some of the installed applications. It all started with Guake when I wanted to use it. My shortcut key is F4, I hit F4 and nothing showed up. So I run Guake in terminal, everything fine. Then I hit F4 key and after few seconds Guake crashes with message "Segmentation fault". Nothing more, just that. Then I noticed that Audacity does the same, Gdebi too and even Reportbug app does that (I'm not sure about "segmentation fault", but the app crashes). I don't remember doing anything special or installing any app. All I can think of is this message when booting the system Code: Select allsystemd[1]: Job rpcbind.service/start deleted to break ordering cycle starting with basic.target/start No idea, if there is any connection. Is there anyway, how I can maybe see more behind that "Segmentation fault" error? I found history.log in /var/log/apt/, so I'm thinking about looking into it and see if I really did not installed anything. I have a little feeling that it might have started after some update, but I'm not sure about that. Thank you for your replies. | dasein wrote: Please post results of the following commands run as root:Code: Select allcat /etc/apt/sources.list cat /etc/apt/sources.list.d/ As root? |
My domain is registered with Netfirm. My "A Record" is set as MyDomain.com points to 123.12.45.45 which is my IP address assigned by my ISP. Behind modem I have Linksys router that assigns internal IP to all my devices. I have port 80 open on my router but when I try to access my site from outside network connection attempt times out. When I open port 8080 on my router and try to access MyDomain.com:8080 from outside network I have no problems. My assumption is that ISP is blocking somehow port 80. Can someone try to give opinion on this please | Your data already answer your question. Yes, your ISP looks to be blocking port 80. (Not pertinent to your question, but they are also almost certainly blocking port 25, as well.) |
I'm back on Debian again. I use a screen recorder called "SimpleScreenRecorder". I did compile it in the past without problems, but there is something going wrong with it nowadays. libglu1-mesa-dev conflicts with libglu1-mesa-dev:i386, which didn't happen a few months back. If it helps, I think I didn't have FGLRX installed back when I successfully compiled SSR. Terminal output: Code: Select all[amarildo@amarildo ~]$ sudo apt-get install build-essential pkg-config qt4-qmake libqt4-dev libavformat-dev \ > libavcodec-dev libavutil-dev libswscale-dev libasound2-dev libpulse-dev libjack-jackd2-dev \ > libgl1-mesa-dev libglu1-mesa-dev libx11-dev libxfixes-dev libxext-dev libxi-dev g++-multilib \ > libx11-6 libxext6 libxfixes3 \ > libglu1-mesa-dev:i386 libx11-dev:i386 libxfixes-dev:i386 libgl1-mesa-dev:i386 \ > desktop-file-utils [sudo] password for amarildo: Reading package lists... Done Building dependency tree Reading state information... Done build-essential is already the newest version. build-essential set to manually installed. desktop-file-utils is already the newest version. desktop-file-utils set to manually installed. libx11-6 is already the newest version. libx11-6 set to manually installed. libx11-dev is already the newest version. libx11-dev set to manually installed. libxext-dev is already the newest version. libxext-dev set to manually installed. libxext6 is already the newest version. libxext6 set to manually installed. libxfixes-dev is already the newest version. libxfixes-dev set to manually installed. libxfixes3 is already the newest version. libxfixes3 set to manually installed. libgl1-mesa-dev is already the newest version. libgl1-mesa-dev set to manually installed. Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: libglu1-mesa-dev : Conflicts: libglu1-mesa-dev:i386 but 9.0.0-2 is to be installed libglu1-mesa-dev:i386 : Conflicts: libglu1-mesa-dev but 9.0.0-2 is to be installed E: Unable to correct problems, you have held broken packages. [amarildo@amarildo ~]$ Instructions: https://github.com/MaartenBaert/ssr I literally have no clue of what I could do to solve this. Debian Jessie FGLRX 15.9.4 | The header "-dev" packages are only needed to compile the package, not run it. You seem to be running amd64 and want the standard "-dev" version installed, so simply remove the :i386 version first. You can't have both installed at once, sorry. The -dev:i386 package would only have been necessary if you were cross-compiling a 32-bit package on your 64-bit paltform, which is a rather advanced procedure. Do you remember how it got installed? |
Is is advisable to compile and install latest kernel in Debian Jessie i.e. installing Kernel 4.4.1 which is the latest stable kernel ? | willmaster wrote:Is is advisable to compile and install latest kernel in Debian JessieWhy? Unless there's something wrong with the one shipping in stable (or the newer version from backports), you're just creating work for yourself. OTOH, if you want to tinker and learn how to configure & compile a kernel, go nuts. I'd keep the stock kernel around as a fallback though, in case something properly silly occurs - like forgetting to compile the filesystem driver. |
I am running Wheezy 7.9 and recently created a file, in xorg.conf.d, to set the monitor configuration because the EDID is not always read from the monitor. Everything works great but when the EDID is not read the monitor name, as shown in System Settings>Displays, shows as Unknown. I have the vendor info and modelname in the config file but they do not show in the Display GUI. Is there some variable that I can set in order to get a good monitor name displayed? Hope what I have written is clear and understandable. This is not a really big problem as having things work is most important. I am really just curious. Probably should include some more information. I am using the Gnome Classic desktop and gdm manager. Here is the monitor conf file that I put in /etc/X11/xorg,conf.d Code: Select allSection "Monitor" Identifier "Monitor0" VendorName "VSC" ModelName "VA912b" DisplaySize 376 301 HorizSync 30.0 - 82.0 VertRefresh 50.0 - 85.0 Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync Modeline "1280x960" 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync EndSection Section "Device" Identifier "MyVGA" Driver "intel" EndSection Section "Screen" Identifier "Screen0" #Collapse Monitor and Device section to Screen section Device "MyVGA" Monitor "Monitor0" DefaultDepth 24 #Choose the depth (16||24) SubSection "Display" Depth 24 Modes "1152x864" "1280x1024" "1280x960" "1024x768" "800x600" "640x480" #Choose the resolution EndSubSection EndSection | With more searching I find that my monitor, ViewSonic VA912b, is not in /usr/share/hwdata/MonitorsDB . If that monitor were added to the DB would it show up in the System Settings>Displays GUI, given the the conf file I have provided, or I am out of luck when the EDID is not read? Again, it's not a big deal that the GUI shows monitor unknown. I just want to know if there is a way to fix this. |
This is my first day back to Debian in a long time. I installed sid, then apt-listbugs, then Steam. However, this happens when I try to open it: Code: Select allamarildo@amarildo:~$ steam /usr/games/steam: 19: /usr/games/steam: /home/amarildo/.steam/ubuntu12_32/steam: Permission denied tar: This does not look like a tar archive xz: (stdin): File format not recognized tar: Child returned status 1 tar: Error is not recoverable: exiting now I think this is a bug that should be reported to the maintainer. What do you guys think? Debian sid Grsecurity Kernel Free Radeon Drivers Firmware-Linux-Nonfree installed PS: You might think that my problem is because of grsec, because of that "Permission denied" message. It's not. Not only I disabled MMPROTECT for Steam, and I also did "sysctl kernel.pax.softmode=1" just to make sure. It's not grsec. Thanks. | Is your user in the "video" & "audio" groups? https://wiki.debian.org/Steam#User_permissions |
I recently upgraded my Debian box from Jessie to Stretch. After this, apt informed me that I should issue "apt-get autoremove," however the package list to be effected was large and contained some important packages (xorg being just one example). Most of the packages are qt4 related, and I at first assumed qt5 equivalents had replaced them, but seeing network-manager and xorg in the list made me pause. How should I go about fixing this? thanks. | I ran Code: Select allaptitude update and the packages were no longer marked for deletion by neither aptitude nor apt-get. |
Hello all, I have a Lenovo Thinkpad R500, and recently I recently upgraded it with a Crucial SSD as well as 8 GB of DDR3, as I had a blank SSD installed, I decided to switch from Mint to Debian and see how I like it. I'm using Debian 8 with the MATE desktop and so far it's been quite a pleasure to use, besides one small thing. Every 5 to 10 minutes, DNS resolution stops working completely. I can ping IP addresses as well as connect to websites by IP address just fine, however I cannot resolve hostnames. The problem exists regardless of whether I'm connected to my router via a wired or wireless connection. It is not occurring on any other computer in my house and didn't exist on my old Mint installation. If I disconnect from my home network by either unplugging the Ethernet cable or flicking the WIFI switch on my laptop, and then reconnecting, I can resolve hostnames again, albeit only for another 5-10 minutes, when DNS stops working again. I was originally using DHCP and my ISP's DNS servers, but switched to my laptop using a static IP address and Google's DNS Servers at 8.8.8.8 and 8.8.4.4, the problem persisted after this change. Does anybody know what's going on here? Disconnecting and reconnecting to the network every 5 minutes is becoming a real hassle, any help would be greatly appreciated. | First off: thanks for providing enough background to make diagnosis a bit easier. Based on the symptoms you describe, the first thing I'd rule out is IPv6 shenanigans. The relevant Wiki page is here: https://wiki.debian.org/DebianIPv6#How_to_turn_off_IPv6 |
Sometimes (rarely) when I try to open VLC it wont open, but it stays in the background and takes 98-100% of one core. The problem is that I can't kill that vlc-process. Code: Select allkillall vlc will NOT kill it and Code: Select allkill 31641 won't work either top shows Code: Select allPID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31641 xxxxxxxx 20 0 1320248 64384 39120 S 100.0 1.6 44:51.94 vlc Is there any way to kill the vlc-process (without booting the machine)? I also tried the "killall vlc" and "kill 31641" as root with the same results. I have Debian jessie and the only "nonofficial" repositories I have enabled are #google chrome http://dl.google.com/linux/chrome/deb stable main #Backports deb http://httpredir.debian.org/debian jessie-backports main And from those I have installed only chrome, and wine-development, and I dont think those could have anything to do with this problem. Booting the machine does work, but I don't want to boot my machine just now. And also would be nice to know a solution, since this happens about once per week | Jeees! Suceeded in killing that process with: Code: Select allkill -KILL -9 31641 the "-9" was probably too much, because got this output: "bash: kill: (-9) - no such process" but vlc is now finally DEAD, and I didn't have to reboot Hmmm. This is probably a bug in vlc. Should I report it ? |
I had problems with the system not reading the monitor EDID and have fixed the problem by adding an override file in xorg.conf.d and all of that seems to be working well (although the system has not failed to read the EDID since I implemented the override. go figure). The thing that I am wondering about is something I see in the Xorg log file. At the end of the log file, after everything seems to be configured, there are six (6) identical blocks of information regarding the EDID and modeline settings. Is this normal or is X stuck in some kind of loop? Everything is working and I am not waiting an inordinate amount of time to log on, or after. Just curious. Here is the log file. Code: Select all[ 15.848] X.Org X Server 1.12.4 Release Date: 2012-08-27 [ 15.848] X Protocol Version 11, Revision 0 [ 15.848] Build Operating System: Linux 3.2.0-4-amd64 i686 Debian [ 15.848] Current Operating System: Linux JohnBoy 3.2.0-4-686-pae #1 SMP Debian 3.2.73-2+deb7u2 i686 [ 15.848] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-686-pae root=UUID=5c593049-113a-44f6-87fd-511b71461dde ro quiet [ 15.848] Build Date: 09 February 2015 10:12:47AM [ 15.848] xorg-server 2:1.12.4-6+deb7u6 (Julien Cristau <jcristau@debian.org>) [ 15.848] Current version of pixman: 0.26.0 [ 15.848] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 15.848] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 15.848] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb 4 08:11:04 2016 [ 15.894] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 15.894] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 16.217] (==) No Layout section. Using the first Screen section. [ 16.217] (**) |-->Screen "Screen0" (0) [ 16.217] (**) | |-->Monitor "VA912b" [ 16.237] (**) | |-->Device "MyVGA" [ 16.237] (==) Automatically adding devices [ 16.237] (==) Automatically enabling devices [ 16.322] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. [ 16.322] Entry deleted from font path. [ 16.333] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist. [ 16.333] Entry deleted from font path. [ 16.333] (==) FontPath set to: /usr/share/fonts/X11/misc, /usr/share/fonts/X11/100dpi/:unscaled, /usr/share/fonts/X11/75dpi/:unscaled, /usr/share/fonts/X11/Type1, /usr/share/fonts/X11/100dpi, /usr/share/fonts/X11/75dpi, built-ins [ 16.333] (==) ModulePath set to "/usr/lib/xorg/modules" [ 16.333] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 16.360] (II) Loader magic: 0xb77675a0 [ 16.360] (II) Module ABI versions: [ 16.360] X.Org ANSI C Emulation: 0.4 [ 16.360] X.Org Video Driver: 12.1 [ 16.360] X.Org XInput driver : 16.0 [ 16.360] X.Org Server Extension : 6.0 [ 16.360] (--) PCI:*(0:0:2:0) 8086:2772:1565:3103 rev 2, Mem @ 0xfde80000/524288, 0xc0000000/268435456, 0xfdf00000/262144, I/O @ 0x0000ff00/8 [ 16.360] (II) Open ACPI successful (/var/run/acpid.socket) [ 16.361] (II) LoadModule: "extmod" [ 16.395] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so [ 16.924] (II) Module extmod: vendor="X.Org Foundation" [ 16.924] compiled for 1.12.4, module version = 1.0.0 [ 16.924] Module class: X.Org Server Extension [ 16.924] ABI class: X.Org Server Extension, version 6.0 [ 16.924] (II) Loading extension SELinux [ 16.924] (II) Loading extension MIT-SCREEN-SAVER [ 16.924] (II) Loading extension XFree86-VidModeExtension [ 16.924] (II) Loading extension XFree86-DGA [ 16.924] (II) Loading extension DPMS [ 16.924] (II) Loading extension XVideo [ 16.924] (II) Loading extension XVideo-MotionCompensation [ 16.924] (II) Loading extension X-Resource [ 16.924] (II) LoadModule: "dbe" [ 16.924] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so [ 17.083] (II) Module dbe: vendor="X.Org Foundation" [ 17.083] compiled for 1.12.4, module version = 1.0.0 [ 17.083] Module class: X.Org Server Extension [ 17.083] ABI class: X.Org Server Extension, version 6.0 [ 17.083] (II) Loading extension DOUBLE-BUFFER [ 17.083] (II) LoadModule: "glx" [ 17.083] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so [ 17.161] (II) Module glx: vendor="X.Org Foundation" [ 17.161] compiled for 1.12.4, module version = 1.0.0 [ 17.161] ABI class: X.Org Server Extension, version 6.0 [ 17.161] (==) AIGLX enabled [ 17.161] (II) Loading extension GLX [ 17.161] (II) LoadModule: "record" [ 17.161] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so [ 17.183] (II) Module record: vendor="X.Org Foundation" [ 17.183] compiled for 1.12.4, module version = 1.13.0 [ 17.183] Module class: X.Org Server Extension [ 17.183] ABI class: X.Org Server Extension, version 6.0 [ 17.183] (II) Loading extension RECORD [ 17.183] (II) LoadModule: "dri" [ 17.183] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so [ 17.225] (II) Module dri: vendor="X.Org Foundation" [ 17.225] compiled for 1.12.4, module version = 1.0.0 [ 17.225] ABI class: X.Org Server Extension, version 6.0 [ 17.225] (II) Loading extension XFree86-DRI [ 17.225] (II) LoadModule: "dri2" [ 17.225] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so [ 17.233] (II) Module dri2: vendor="X.Org Foundation" [ 17.233] compiled for 1.12.4, module version = 1.2.0 [ 17.233] ABI class: X.Org Server Extension, version 6.0 [ 17.233] (II) Loading extension DRI2 [ 17.233] (II) LoadModule: "intel" [ 17.233] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so [ 17.275] (II) Module intel: vendor="X.Org Foundation" [ 17.275] compiled for 1.12.3.902, module version = 2.19.0 [ 17.275] Module class: X.Org Video Driver [ 17.275] ABI class: X.Org Video Driver, version 12.1 [ 17.275] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale, Sandybridge Desktop (GT1), Sandybridge Desktop (GT2), Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1), Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+), Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2), Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server, Ivybridge Server (GT2) [ 17.275] (++) using VT number 7 [ 17.282] drmOpenDevice: node name is /dev/dri/card0 [ 17.282] drmOpenDevice: open result is 9, (OK) [ 17.282] drmOpenByBusid: Searching for BusID pci:0000:00:02.0 [ 17.282] drmOpenDevice: node name is /dev/dri/card0 [ 17.282] drmOpenDevice: open result is 9, (OK) [ 17.282] drmOpenByBusid: drmOpenMinor returns 9 [ 17.282] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 [ 17.282] (**) intel(0): Depth 24, (--) framebuffer bpp 32 [ 17.282] (==) intel(0): RGB weight 888 [ 17.282] (==) intel(0): Default visual is TrueColor [ 17.282] (II) intel(0): Integrated Graphics Chipset: Intel(R) 945G [ 17.282] (--) intel(0): Chipset: "945G" [ 17.282] (**) intel(0): Relaxed fencing disabled [ 17.282] (**) intel(0): Wait on SwapBuffers? enabled [ 17.282] (**) intel(0): Triple buffering? enabled [ 17.282] (**) intel(0): Framebuffer tiled [ 17.282] (**) intel(0): Pixmaps tiled [ 17.282] (**) intel(0): 3D buffers tiled [ 17.321] (**) intel(0): SwapBuffers wait enabled [ 17.321] (==) intel(0): video overlay key set to 0x101fe [ 17.362] (II) intel(0): Output VGA1 using monitor section VA912b [ 17.402] (II) intel(0): EDID for output VGA1 [ 17.402] (II) intel(0): Manufacturer: VSC Model: cf1b Serial#: 16843009 [ 17.402] (II) intel(0): Year: 2005 Week: 30 [ 17.402] (II) intel(0): EDID Version: 1.3 [ 17.402] (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V [ 17.402] (II) intel(0): Sync: Separate [ 17.402] (II) intel(0): Max Image Size [cm]: horiz.: 38 vert.: 30 [ 17.402] (II) intel(0): Gamma: 2.20 [ 17.402] (II) intel(0): DPMS capabilities: Off; RGB/Color Display [ 17.402] (II) intel(0): Default color space is primary color space [ 17.402] (II) intel(0): First detailed timing is preferred mode [ 17.402] (II) intel(0): redX: 0.645 redY: 0.347 greenX: 0.287 greenY: 0.599 [ 17.402] (II) intel(0): blueX: 0.142 blueY: 0.073 whiteX: 0.313 whiteY: 0.329 [ 17.402] (II) intel(0): Supported established timings: [ 17.402] (II) intel(0): 720x400@70Hz [ 17.402] (II) intel(0): 640x480@60Hz [ 17.402] (II) intel(0): 640x480@67Hz [ 17.402] (II) intel(0): 640x480@72Hz [ 17.402] (II) intel(0): 640x480@75Hz [ 17.402] (II) intel(0): 800x600@56Hz [ 17.402] (II) intel(0): 800x600@60Hz [ 17.402] (II) intel(0): 800x600@72Hz [ 17.402] (II) intel(0): 800x600@75Hz [ 17.402] (II) intel(0): 832x624@75Hz [ 17.402] (II) intel(0): 1024x768@60Hz [ 17.402] (II) intel(0): 1024x768@70Hz [ 17.402] (II) intel(0): 1024x768@75Hz [ 17.402] (II) intel(0): 1280x1024@75Hz [ 17.402] (II) intel(0): 1152x864@75Hz [ 17.402] (II) intel(0): Manufacturer's mask: 0 [ 17.402] (II) intel(0): Supported standard timings: [ 17.402] (II) intel(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 [ 17.402] (II) intel(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513 [ 17.402] (II) intel(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 [ 17.402] (II) intel(0): #3: hsize: 1024 vsize 768 refresh: 85 vid: 22881 [ 17.402] (II) intel(0): #4: hsize: 800 vsize 600 refresh: 85 vid: 22853 [ 17.402] (II) intel(0): #5: hsize: 640 vsize 480 refresh: 85 vid: 22833 [ 17.402] (II) intel(0): Supported detailed timing: [ 17.402] (II) intel(0): clock: 108.0 MHz Image Size: 376 x 301 mm [ 17.402] (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0 [ 17.402] (II) intel(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0 [ 17.402] (II) intel(0): Serial No: PPK053000062 [ 17.402] (II) intel(0): Ranges: V min: 50 V max: 85 Hz, H min: 30 H max: 82 kHz, PixClock max 145 MHz [ 17.402] (II) intel(0): Monitor name: VA912b [ 17.402] (II) intel(0): EDID (in hex): [ 17.402] (II) intel(0): 00ffffffffffff005a631bcf01010101 [ 17.402] (II) intel(0): 1e0f010308261e782e3975a558499924 [ 17.402] (II) intel(0): 125054bfef8081808140714f61594559 [ 17.402] (II) intel(0): 315901010101302a009851002a403070 [ 17.402] (II) intel(0): 1300782d1100001e000000ff0050504b [ 17.402] (II) intel(0): 3035333030303036320a000000fd0032 [ 17.402] (II) intel(0): 551e520e000a202020202020000000fc [ 17.402] (II) intel(0): 005641393132620a202020202020002c [ 17.402] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 17.402] (II) intel(0): Using hsync ranges from config file [ 17.402] (II) intel(0): Using vrefresh ranges from config file [ 17.402] (II) intel(0): Printing DDC gathered Modelines: [ 17.402] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 17.402] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 17.402] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 17.402] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 17.402] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 17.402] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 17.402] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 17.402] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 17.402] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 17.402] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 17.402] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 17.403] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 17.403] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 17.403] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 17.403] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 17.403] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 17.403] (II) intel(0): Printing probed modes for output VGA1 [ 17.403] (II) intel(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz UP) [ 17.403] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 17.403] (II) intel(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 17.403] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) [ 17.403] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz) [ 17.403] (II) intel(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 17.403] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e) [ 17.403] (II) intel(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 17.403] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) [ 17.403] (II) intel(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x85.1 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 17.403] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) [ 17.403] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 17.403] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) [ 17.403] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 17.403] (II) intel(0): Output VGA1 connected [ 17.403] (II) intel(0): Using user preference for initial modes [ 17.403] (II) intel(0): Output VGA1 using initial mode 1152x864 [ 17.403] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. [ 17.403] (II) intel(0): Kernel page flipping support detected, enabling [ 17.403] (**) intel(0): Display dimensions: (376, 301) mm [ 17.403] (**) intel(0): DPI set to (77, 72) [ 17.403] (II) Loading sub module "fb" [ 17.403] (II) LoadModule: "fb" [ 17.403] (II) Loading /usr/lib/xorg/modules/libfb.so [ 17.653] (II) Module fb: vendor="X.Org Foundation" [ 17.653] compiled for 1.12.4, module version = 1.0.0 [ 17.653] ABI class: X.Org ANSI C Emulation, version 0.4 [ 17.653] (II) Loading sub module "dri2" [ 17.653] (II) LoadModule: "dri2" [ 17.653] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so [ 17.653] (II) Module dri2: vendor="X.Org Foundation" [ 17.653] compiled for 1.12.4, module version = 1.2.0 [ 17.653] ABI class: X.Org Server Extension, version 6.0 [ 17.654] (==) Depth 24 pixmap format is 32 bpp [ 17.654] (II) intel(0): [DRI2] Setup complete [ 17.654] (II) intel(0): [DRI2] DRI driver: i915 [ 17.654] (II) intel(0): Allocated new frame buffer 1152x864 stride 8192, tiled [ 17.668] (II) UXA(0): Driver registered support for the following operations: [ 17.668] (II) solid [ 17.668] (II) copy [ 17.668] (II) composite (RENDER acceleration) [ 17.668] (II) put_image [ 17.668] (II) get_image [ 17.668] (==) intel(0): Backing store disabled [ 17.668] (==) intel(0): Silken mouse enabled [ 17.668] (II) intel(0): Initializing HW Cursor [ 17.668] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. [ 17.668] (==) intel(0): DPMS enabled [ 17.668] (==) intel(0): Intel XvMC decoder disabled [ 17.668] (II) intel(0): Set up textured video [ 17.669] (II) intel(0): Set up overlay video [ 17.669] (II) intel(0): direct rendering: DRI2 Enabled [ 17.669] (==) intel(0): hotplug detection: "enabled" [ 17.756] (--) RandR disabled [ 17.756] (II) Initializing built-in extension Generic Event Extension [ 17.756] (II) Initializing built-in extension SHAPE [ 17.756] (II) Initializing built-in extension MIT-SHM [ 17.756] (II) Initializing built-in extension XInputExtension [ 17.756] (II) Initializing built-in extension XTEST [ 17.756] (II) Initializing built-in extension BIG-REQUESTS [ 17.756] (II) Initializing built-in extension SYNC [ 17.756] (II) Initializing built-in extension XKEYBOARD [ 17.756] (II) Initializing built-in extension XC-MISC [ 17.756] (II) Initializing built-in extension SECURITY [ 17.756] (II) Initializing built-in extension XINERAMA [ 17.756] (II) Initializing built-in extension XFIXES [ 17.756] (II) Initializing built-in extension RENDER [ 17.756] (II) Initializing built-in extension RANDR [ 17.756] (II) Initializing built-in extension COMPOSITE [ 17.756] (II) Initializing built-in extension DAMAGE [ 17.756] (II) SELinux: Disabled on system [ 18.210] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer [ 18.210] (II) AIGLX: enabled GLX_INTEL_swap_event [ 18.210] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control [ 18.210] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects [ 18.210] (II) AIGLX: Loaded and initialized i915 [ 18.210] (II) GLX: Initialized DRI2 GL provider for screen 0 [ 18.239] (II) intel(0): Setting screen physical size to 376 x 301 [ 19.390] (II) config/udev: Adding input device Power Button (/dev/input/event3) [ 19.390] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 19.390] (II) LoadModule: "evdev" [ 19.429] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 19.492] (II) Module evdev: vendor="X.Org Foundation" [ 19.492] compiled for 1.12.1, module version = 2.7.0 [ 19.492] Module class: X.Org XInput Driver [ 19.492] ABI class: X.Org XInput driver, version 16.0 [ 19.492] (II) Using input driver 'evdev' for 'Power Button' [ 19.492] (**) Power Button: always reports core events [ 19.492] (**) evdev: Power Button: Device: "/dev/input/event3" [ 19.492] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 19.492] (--) evdev: Power Button: Found keys [ 19.492] (II) evdev: Power Button: Configuring as keyboard [ 19.492] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3" [ 19.492] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 19.492] (**) Option "xkb_rules" "evdev" [ 19.492] (**) Option "xkb_model" "pc105" [ 19.492] (**) Option "xkb_layout" "us" [ 19.493] (II) config/udev: Adding input device Power Button (/dev/input/event1) [ 19.493] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 19.493] (II) Using input driver 'evdev' for 'Power Button' [ 19.493] (**) Power Button: always reports core events [ 19.493] (**) evdev: Power Button: Device: "/dev/input/event1" [ 19.493] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 19.493] (--) evdev: Power Button: Found keys [ 19.493] (II) evdev: Power Button: Configuring as keyboard [ 19.493] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1" [ 19.493] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7) [ 19.493] (**) Option "xkb_rules" "evdev" [ 19.493] (**) Option "xkb_model" "pc105" [ 19.493] (**) Option "xkb_layout" "us" [ 19.493] (II) config/udev: Adding input device Sleep Button (/dev/input/event2) [ 19.494] (**) Sleep Button: Applying InputClass "evdev keyboard catchall" [ 19.494] (II) Using input driver 'evdev' for 'Sleep Button' [ 19.494] (**) Sleep Button: always reports core events [ 19.494] (**) evdev: Sleep Button: Device: "/dev/input/event2" [ 19.494] (--) evdev: Sleep Button: Vendor 0 Product 0x3 [ 19.494] (--) evdev: Sleep Button: Found keys [ 19.494] (II) evdev: Sleep Button: Configuring as keyboard [ 19.494] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2" [ 19.494] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8) [ 19.494] (**) Option "xkb_rules" "evdev" [ 19.494] (**) Option "xkb_model" "pc105" [ 19.494] (**) Option "xkb_layout" "us" [ 19.494] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event5) [ 19.494] (II) No input driver specified, ignoring this device. [ 19.494] (II) This device may have been added with another device file. [ 19.494] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/event6) [ 19.495] (**) Genius USB Optical Mouse: Applying InputClass "evdev pointer catchall" [ 19.495] (II) Using input driver 'evdev' for 'Genius USB Optical Mouse' [ 19.495] (**) Genius USB Optical Mouse: always reports core events [ 19.495] (**) evdev: Genius USB Optical Mouse: Device: "/dev/input/event6" [ 19.495] (--) evdev: Genius USB Optical Mouse: Vendor 0x458 Product 0x3a [ 19.495] (--) evdev: Genius USB Optical Mouse: Found 12 mouse buttons [ 19.495] (--) evdev: Genius USB Optical Mouse: Found scroll wheel(s) [ 19.495] (--) evdev: Genius USB Optical Mouse: Found relative axes [ 19.495] (--) evdev: Genius USB Optical Mouse: Found x and y relative axes [ 19.495] (II) evdev: Genius USB Optical Mouse: Configuring as mouse [ 19.495] (II) evdev: Genius USB Optical Mouse: Adding scrollwheel support [ 19.495] (**) evdev: Genius USB Optical Mouse: YAxisMapping: buttons 4 and 5 [ 19.495] (**) evdev: Genius USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 19.495] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/input/input6/event6" [ 19.495] (II) XINPUT: Adding extended input device "Genius USB Optical Mouse" (type: MOUSE, id 9) [ 19.495] (II) evdev: Genius USB Optical Mouse: initialized for relative axes. [ 19.495] (**) Genius USB Optical Mouse: (accel) keeping acceleration scheme 1 [ 19.495] (**) Genius USB Optical Mouse: (accel) acceleration profile 0 [ 19.495] (**) Genius USB Optical Mouse: (accel) acceleration factor: 2.000 [ 19.495] (**) Genius USB Optical Mouse: (accel) acceleration threshold: 4 [ 19.495] (II) config/udev: Adding input device Genius USB Optical Mouse (/dev/input/mouse0) [ 19.495] (II) No input driver specified, ignoring this device. [ 19.495] (II) This device may have been added with another device file. [ 19.496] (II) config/udev: Adding input device USB Audio Device (/dev/input/event7) [ 19.496] (**) USB Audio Device: Applying InputClass "evdev keyboard catchall" [ 19.496] (II) Using input driver 'evdev' for 'USB Audio Device' [ 19.496] (**) USB Audio Device: always reports core events [ 19.496] (**) evdev: USB Audio Device: Device: "/dev/input/event7" [ 19.496] (--) evdev: USB Audio Device: Vendor 0xc76 Product 0x160b [ 19.496] (--) evdev: USB Audio Device: Found keys [ 19.496] (II) evdev: USB Audio Device: Configuring as keyboard [ 19.496] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.3/input/input7/event7" [ 19.496] (II) XINPUT: Adding extended input device "USB Audio Device" (type: KEYBOARD, id 10) [ 19.496] (**) Option "xkb_rules" "evdev" [ 19.496] (**) Option "xkb_model" "pc105" [ 19.496] (**) Option "xkb_layout" "us" [ 19.496] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0) [ 19.496] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall" [ 19.496] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard' [ 19.496] (**) AT Translated Set 2 keyboard: always reports core events [ 19.496] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0" [ 19.496] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1 [ 19.496] (--) evdev: AT Translated Set 2 keyboard: Found keys [ 19.496] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard [ 19.496] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0" [ 19.496] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11) [ 19.496] (**) Option "xkb_rules" "evdev" [ 19.496] (**) Option "xkb_model" "pc105" [ 19.496] (**) Option "xkb_layout" "us" [ 19.497] (II) config/udev: Adding input device PC Speaker (/dev/input/event4) [ 19.497] (II) No input driver specified, ignoring this device. [ 19.497] (II) This device may have been added with another device file. [ 19.566] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 19.566] (II) intel(0): Using hsync ranges from config file [ 19.566] (II) intel(0): Using vrefresh ranges from config file [ 19.566] (II) intel(0): Printing DDC gathered Modelines: [ 19.566] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 19.566] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 19.566] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 19.566] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 19.566] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 19.566] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 19.566] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 19.566] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 19.566] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 19.566] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 19.566] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 19.566] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 19.566] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 19.566] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 19.566] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 19.566] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 19.566] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 19.566] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 19.566] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 19.566] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 23.982] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 23.982] (II) intel(0): Using hsync ranges from config file [ 23.982] (II) intel(0): Using vrefresh ranges from config file [ 23.982] (II) intel(0): Printing DDC gathered Modelines: [ 23.982] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 23.982] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 23.982] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 23.982] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 23.982] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 23.982] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 23.982] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 23.982] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 23.982] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 23.982] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 23.982] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 23.982] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 23.982] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 23.982] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 23.982] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 23.982] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 23.982] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 23.982] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 23.982] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 23.982] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 35.446] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 35.446] (II) intel(0): Using hsync ranges from config file [ 35.446] (II) intel(0): Using vrefresh ranges from config file [ 35.446] (II) intel(0): Printing DDC gathered Modelines: [ 35.446] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 35.446] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 35.446] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 35.446] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 35.446] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 35.446] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 35.446] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 35.446] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 35.446] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 35.446] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 35.446] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 35.446] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 35.446] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 35.446] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 35.446] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 35.446] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 35.446] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 35.446] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 35.446] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 35.446] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 36.502] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 36.502] (II) intel(0): Using hsync ranges from config file [ 36.502] (II) intel(0): Using vrefresh ranges from config file [ 36.502] (II) intel(0): Printing DDC gathered Modelines: [ 36.502] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 36.502] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 36.502] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 36.502] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 36.502] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 36.502] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 36.502] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 36.502] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 36.502] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 36.502] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 36.502] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 36.502] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 36.502] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 36.502] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 36.502] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 36.502] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 36.502] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 36.502] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 36.502] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 36.502] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 41.546] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 41.546] (II) intel(0): Using hsync ranges from config file [ 41.546] (II) intel(0): Using vrefresh ranges from config file [ 41.546] (II) intel(0): Printing DDC gathered Modelines: [ 41.546] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 41.546] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 41.546] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 41.546] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 41.546] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 41.546] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 41.546] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 41.546] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 41.546] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 41.546] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 41.546] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 41.546] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 41.546] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 41.546] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 41.546] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 41.546] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 41.546] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 41.546] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 41.546] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 41.546] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) [ 56.198] (II) intel(0): EDID vendor "VSC", prod id 53019 [ 56.198] (II) intel(0): Using hsync ranges from config file [ 56.198] (II) intel(0): Using vrefresh ranges from config file [ 56.198] (II) intel(0): Printing DDC gathered Modelines: [ 56.198] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP) [ 56.198] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 56.198] (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) [ 56.198] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 56.198] (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 56.198] (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 56.198] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 56.198] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 56.198] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 56.198] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 56.198] (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 56.198] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 56.198] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 56.198] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 56.198] (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 56.199] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 56.199] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 56.199] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz e) [ 56.199] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e) [ 56.199] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e) | I've used maybe 3 or 4 versions of the Intel driver on Linux installations, and its log output with regard to modesetting has always been a little flaky in one way or another. There is no documentation that I've been able to find that explains what the I915 driver is doing or why. On an Ubuntu 9.04 install, it would do a complete register dump to the log. There are a LOT of registers in the Intel video chip! |
I've got this weird issue, I recently upgraded from Debian Wheezy to Jessie, I re-installed my Debian 7, because for some strange reason the iso image I was trying to use for installing Debian 8 didn't worked (which I burned on a dvd and also tried a bootable usb, both of them didn't worked...), so I had to re-install Debian 7, and upgraded via command line, after finished from upgrading, the system reboots and Debian Jessie desktop appears, but after 20-30 seconds or so, my laptop enters to suspend mode I don't know why but this keeps happening. I turn my laptop on, everything ok, it shows me the login I type my password... The desktop appears, but as I said, after half-minute the laptop enters to suspend mode, so I have to click my power button to get back to the session. This just happens when the laptops turns on, after that suspend mode it doesn't enter in that state again... Is this a bug? or do I have to configure something for preventing this to happen? I hope you can help me out, thanks Sorry if my english is bad, it's not my first language and I don't know if my grammar it's quite accurate. | It could be this: https://bugs.debian.org/cgi-bin/bugrepo ... bug=769946 There is a couple of things you can try in the above link. First would try setting HandleLidSwitch=ignore in /etc/systemd/logind.conf |
I'm soon going to help a family member switch to Debian, and he needs a way to update the system. He's not very tech savvy, and so the last thing I'd want to make him do is learn how to use APT from the terminal. I think he is either going to use GNOME or Xfce as is desktop environment. The thing is, there are no good GUI software updaters that I know of, so maybe you can help me out, because maybe there's one I missed. The only two packages I know of are GNOME PackageKit and GNOME Software. GNOME Software is not available in Debian Stable, and GNOME PackageKit is both depreciated and doesn't really work. In my experience with GNOME PackageKit, it says "There are no updates available" as soon as you open it and it doesn't even attempt to update the package cache. How can I get my family member a GUI for software updates? | Then I would rather install SolydXK or LMDE, instead of throwing a software updater one on top of vanilla Debian. But that's just me. |
I have realized that in not installing suggested packages I've missed out on a ton of doc files, which would really come in handy while I'm away from internet access. Is there a way take a list of currently installed packages and find out which of them have doc packages available? Possibly install them in a single step? I have been playing around with aptitude and apt-rdepends, but I'm not quite sure how to go about this. Somehow take a list of installed packages, run it through an apt-cache search, and end up with a list of -doc packages to install? My bash-fu isn't the greatest, and I suppose this could be a bad idea to begin with. Thoughts? | No warranty because I'm unversed in bashfu. Improvements and suggestions are appreciated. Code: Select allecho preparing apt-file update echo Getting manual installed packages OUTPUT_APTMARK="$(apt-mark showmanual)" echo grepping for suggested packages for pkg in $OUTPUT_APTMARK; do OUTPUT_GREP="$OUTPUT_GREP $(apt-cache show $pkg | grep Suggests | cut -c 11-)" ; done echo checking which of them provides at least one doc file for test in $OUTPUT_GREP ;do echo ${test//[,]/} | grep -E [A-Za-z] | xargs apt-file show | grep -m 1 /usr/share/*/doc ; done |
How do I force recompilation of the kernel .deb packages after a small change I make to the sources without having to clean the sources and recompile the whole kernel again? Code: Select all$ fakeroot make -f debian/rules.gen setup_i386_none_686 $ fakeroot make -f debian/rules.gen binary-arch_i386_none_686 binary-indep Calling the second command again does not recompile the modified code, just recreates the .deb packages. If I use: Code: Select all$ make -f debian/rules clean before the build command, then it will recompile everything which takes ages. How can I force recompilation of the files/objects I changed (and dependencies)? I use this guide: https://wiki.debian.org/HowToRebuildAnO ... nelPackage ('Building only a single kernel variant' section) | ultr wrote:t will recompile everything which takes ages. According to here, the usual make routine should be smart enough to just compile your recent additions. But you're making deb packages, so maybe the settings you're looking for are something you have to put into debian/rules? Just guessing though... |
Hello, this happened to me multiple times since fresh installing Debian a few days ago. The whole system just stops reacting. I can still move the mouse (can't click on anything) but it stops eventually too. Using KDE environment. I would really appreciate your help. Thank you. By the way, no temperature or CPU/Memory peaks on the monitors. Also it happens randomly, I am not aware of any pattern. When I played a video, the sound continued in that state. Form the log I can't tell the reason, please note that i have tried to kill the server. Nothing happened and I wasn't even able to enter the command line. Here is the log (with two crashes): Code: Select allFirst one: Dec 26 16:22:59 Temple org.a11y.atspi.Registry[1514]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0" Dec 26 16:22:59 Temple org.a11y.atspi.Registry[1514]: after 23177 requests (23177 known processed) with 0 events remaining. Dec 26 16:22:59 Temple kernel: [15799.502677] SysRq : SAK Dec 26 16:22:59 Temple kernel: [15799.502696] SAK: killed process 592 (Xorg): task_session(p)==tty->session Dec 26 16:22:59 Temple kernel: [15799.502746] SAK: killed process 592 (Xorg): task_session(p)==tty->session Dec 26 16:22:59 Temple org.kde.kuiserver[839]: kuiserver: Fatal IO error: client killed Dec 26 16:22:59 Temple org.a11y.Bus[839]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting. Dec 26 16:23:11 Temple kernel: [15811.311081] SysRq : SAK Second one: Dec 24 20:22:20 Temple kernel: [ 2905.537273] SysRq : This sysrq operation is disabled. Dec 24 20:22:22 Temple kernel: [ 2907.743863] SysRq : This sysrq operation is disabled. Dec 24 20:22:23 Temple kernel: [ 2908.399444] SysRq : This sysrq operation is disabled. Dec 24 20:22:23 Temple kernel: [ 2908.751217] SysRq : This sysrq operation is disabled. Dec 24 20:22:27 Temple kernel: [ 2912.660709] SysRq : This sysrq operation is disabled. Dec 24 20:22:28 Temple kernel: [ 2913.516164] SysRq : This sysrq operation is disabled. Dec 24 20:22:32 Temple kernel: [ 2918.081238] SysRq : This sysrq operation is disabled. Dec 24 20:22:33 Temple kernel: [ 2919.104538] SysRq : This sysrq operation is disabled. Dec 24 20:22:34 Temple kernel: [ 2920.103943] SysRq : This sysrq operation is disabled. Dec 24 20:22:57 Temple kernel: [ 2942.705467] SysRq : SAK Dec 24 20:22:57 Temple kernel: [ 2942.705730] SAK: killed process 753 (Xorg): task_session(p)==tty->session Dec 24 20:22:57 Temple kernel: [ 2942.705800] SAK: killed process 753 (Xorg): task_session(p)==tty->session Dec 24 20:22:57 Temple org.kde.kuiserver[882]: kuiserver: Fatal IO error: client killed Dec 24 20:22:57 Temple kernel: [ 2942.992182] traps: opera[15140] general protection ip:7fbb660975d2 sp:7ffc3fb10190 error:0 in libc-2.19.so[7fbb66061000+19f000] Dec 24 20:23:06 Temple org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave. Dec 24 20:23:07 Temple org.kde.kuiserver[15241]: QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. Dec 24 20:23:07 Temple org.kde.kuiserver[15241]: QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. Dec 24 20:26:58 Temple org.kde.kcontrol.kcmkdm: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave. | I used a GTX560Ti with nouveau drivers for a long time and had no similar issues. Check if the are any relevant error messages in ~/.xsession-errors or journalctl. |
Hey Guys, I started having a problem where when I try to reload package information or download and install packages, it freezes like it's not doing anything. But if I leave it for 10 minutes or so it eventually downloads and installs. Weird since it has always taken a matter of seconds. Internet browser works fine, so I don't know what the problem is. Are the debian servers just really slow recently? I previously updated to Jessie about 6 months ago, and tried a fresh install to see if it'd fix it, but it didn't. I tried a couple other mirrors like the us mirror and ftp site. Here is my current sources.list: Code: Select alldeb http://httpredir.debian.org/debian/ jessie main deb-src http://httpredir.debian.org/debian/ jessie main deb http://httpredir.debian.org/debian/ jessie-updates main deb-src http://httpredir.debian.org/debian/ jessie-updates main deb http://security.debian.org/ jessie/updates main deb-src http://security.debian.org/ jessie/updates main Any ideas? Thanks! Paul | boehmp wrote:Code: Select allpaul@unknown782bcbdfd3a7:~$ sudo apt-get update 0% [Connecting to ftp.us.debian.org (2610:148:1f10:3::89)] [Connecting to security.debian.org (2610:148:1f10:3::73)] This is a long shot so may be wrong, but it's trying to connect using IP V6 addresses. I don't recall seeing this on my system. Hopefully someone else can shed more light on this. |
Hi, A few months ago I bought a new SSD as my main harddrive, while still using two older 3 TB HDD for addtional storage. Each of the HDD is more than half-filled with valuables, like photos and other valuables. However, since then I cannot access one of the HDDs. The system has 64-bit Debian jessie with KDE. fdisk gives the following output: Code: Select allroot@system01:/home/user01# fdisk -l Disk /dev/sdb: 2.7 TiB, 3000592982016 bytes, 5860533168 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: dos Disk identifier: 0x000932fe Device Boot Start End Sectors Size Id Type /dev/sdb1 2048 2048014335 2048012288 976.6G 83 Linux /dev/sdb2 2048014395 5860528064 3812513670 1.8T 83 Linux Partition 3 does not start on physical sector boundary. Disk /dev/sdc: 2.7 TiB, 3000591900160 bytes, 5860531055 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: dos Disk identifier: 0x00000000 Device Boot Start End Sectors Size Id Type /dev/sdc1 * 2048 4294969342 4294967295 2T 83 Linux Disk /dev/sda: 238.5 GiB, 256059432448 bytes, 500116079 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x0f347f7f Device Boot Start End Sectors Size Id Type /dev/sda1 * 2048 1953791 1951744 953M 83 Linux /dev/sda2 1953792 189454335 187500544 89.4G 83 Linux /dev/sda3 189454336 193359871 3905536 1.9G 82 Linux swap / Solaris /dev/sda4 193359872 500115455 306755584 146.3G 83 Linux and gdisk gives the following output for each of the harddrives: Code: Select allroot@system01:/home/user01# gdisk /dev/sda GPT fdisk (gdisk) version 0.8.10 Partition table scan: MBR: MBR only BSD: not present APM: not present GPT: not present *************************************************************** Found invalid GPT and valid MBR; converting MBR to GPT format in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if you don't want to convert your MBR partitions to GPT format! *************************************************************** Command (? for help): ^C root@system01:/home/user01# gdisk /dev/sdb GPT fdisk (gdisk) version 0.8.10 Partition table scan: MBR: MBR only BSD: not present APM: not present GPT: not present *************************************************************** Found invalid GPT and valid MBR; converting MBR to GPT format in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if you don't want to convert your MBR partitions to GPT format! *************************************************************** Command (? for help): ^C root@system01:/home/user01# gdisk /dev/sdc GPT fdisk (gdisk) version 0.8.10 Warning! Disk size is smaller than the main header indicates! Loading secondary header from the last sector of the disk! You should use 'v' to verify disk integrity, and perhaps options on the experts' menu to repair the disk. Caution: invalid backup GPT header, but valid main header; regenerating backup header from main header. Warning! One or more CRCs don't match. You should repair the disk! Partition table scan: MBR: MBR only BSD: not present APM: not present GPT: damaged Found valid MBR and corrupt GPT. Which do you want to use? (Using the GPT MAY permit recovery of GPT data.) 1 - MBR 2 - GPT 3 - Create blank GPT Your answer: ^C root@system01:/home/user01# I am uncertain what to do next. What would be the next non-destructive step? | I think that old msdos type partition table cannot deal more than 2 TB. https://en.wikipedia.org/wiki/GUID_Partition_Table https://administratosphere.wordpress.co ... 2tb-limit/ You may be able to convert old msdos type partition table to GPT (GUID partition table) by gdisk. http://www.rodsbooks.com/gdisk/mbr2gpt.html |
I have a problem with compiling bibliography in Latex running on Debain Jessie. I have even tried to compile the stock example provided by ShareLatex web site, and it still doesn't work. I keep getting same error messages, when I run my own files AND the stock example: I found no \citation commands---while reading file document.aux I found no \bibdata command---while reading file document.aux I found no \bibstyle command---while reading file document.aux All relevant packages have been installed using apt-get. I have already tried reinstalling texlive-bibtex-extra. I am using pdflatex as a default compiler. At this point I think this might be a package issue so I am posting on Debian forum rather then specialized LaTex forums. Has anyone experienced similar issues? | Okay, apparently package biber wasn't installed by default alongside tex-live. On the other hand my editor Texstudio has biber as a default, so there was a disconnect there. A simple: sudo apt-get install biber took care of it. I am not sure why bibtex is installed as a default as opposed to biber when most online tutorials suggest using biber as a backend for compiling bibliographies. |
this is probably a hard question to answer, but any hint or suggestion is very welcome Yesterday cheese stopped working (it was giving a strange error, when I ran it with sudo it gave an error related to gstreamer and cluttersink) so I gave a dmesg less | grep video the output was very scary , I can only post part of it: ....... [ 159.090682] Modules linked in: ctr ccm msr cpufreq_stats nfsd auth_rpcgss oid_registry nfs_acl nfs lockd grace fscache sunrpc nls_utf8 nls_cp437 vfat fat joydev x86_pkg_temp_thermal intel_powerclamp intel_rapl coretemp kvm_intel kvm crct10dif_pclmul crc32_pclmul jitterentropy_rng uvcvideo videobuf2_vmalloc sha256_ssse3 videobuf2_memops sha256_generic videobuf2_core hmac v4l2_common videodev drbg media ansi_cprng snd_hda_codec_hdmi arc4 iTCO_wdt asus_nb_wmi iTCO_vendor_support asus_wmi sparse_keymap ath9k ath9k_common ath9k_hw ath snd_hda_codec_conexant mac80211 snd_hda_codec_generic ath3k aesni_intel cfg80211 aes_x86_64 lrw gf128mul glue_helper btusb btrtl btbcm btintel ablk_helper cryptd i915 efi_pstore snd_hda_intel mei_me pcspkr bluetooth drm_kms_helper psmouse evdev snd_hda_codec serio_raw drm [ 159.090741] rfkill efivars snd_hda_core mei lpc_ich i2c_algo_bit snd_hwdep mfd_core shpchp i2c_i801 wmi snd_soc_rt5640 snd_soc_rl6231 snd_soc_core dw_dmac snd_compress dw_dmac_core video snd_pcm battery snd_timer snd soundcore regmap_i2c int3402_thermal snd_soc_sst_acpi processor_thermal_device i2c_designware_platform intel_soc_dts_iosf i2c_designware_core int3400_thermal int340x_thermal_zone ac iosf_mbi acpi_thermal_rel processor button fuse parport_pc ppdev lp parport autofs4 ext4 crc16 mbcache jbd2 sg sd_mod crc32c_intel ahci xhci_pci libahci xhci_hcd libata scsi_mod usbcore usb_common thermal thermal_sys sdhci_acpi sdhci i2c_hid hid mmc_core [ 159.090850] [<ffffffffa08bf207>] ? uvc_delete+0x17/0x150 [uvcvideo] [ 159.090868] [<ffffffffa089044a>] ? v4l2_release+0x4a/0x80 [videodev] [ 159.106724] Modules linked in: ctr ccm msr cpufreq_stats nfsd auth_rpcgss oid_registry nfs_acl nfs lockd grace fscache sunrpc nls_utf8 nls_cp437 vfat fat joydev x86_pkg_temp_thermal intel_powerclamp intel_rapl coretemp kvm_intel kvm crct10dif_pclmul crc32_pclmul jitterentropy_rng uvcvideo videobuf2_vmalloc sha256_ssse3 videobuf2_memops sha256_generic videobuf2_core hmac v4l2_common videodev drbg media ansi_cprng snd_hda_codec_hdmi arc4 iTCO_wdt asus_nb_wmi iTCO_vendor_support asus_wmi sparse_keyma ..... today, without doing anything I got a very clean output and cheese started working (mostly I played with powertop, but then it turned out it was completely unrelated, since I went back to the previous settings and the webcam kept working). dmesg less | grep video [ 1.811446] Linux video capture interface: v2.00 [ 1.820229] uvcvideo: Found UVC 1.00 device USB2.0 HD UVC WebCam (04f2:b3d5) [ 1.829396] usbcore: registered new interface driver uvcvideo I am using an integrated webcam on Debian 8 and kernel 4.2 If it can be useful, before everything came back to normal, I just tried to open cheese multiple times (do not know why, mostly desperation) Can anyone guess what happened? I am very interested because sometimes I have interviews via skype and this should not happen randomly!! | So I reviewed your posting history and I can't help but notice that you seem to have a lot of "mysterious" self-correcting issues. Which leads me to suspect that you have a hardware problem--not yet an outright failure, but enough of a "borderline" problem to cause multiple glitches in seemingly unrelated functions. Procedures for basic hardware diagnostics/maintenance 101 (ventilation, RAM testing, etc.) are all over the 'Net. Google eagerly awaits your inquiry. While you're at it, make a backup of any data you deem worth saving. Right now would be a good time. (You're still reading?? You should be making that backup. Unless you already have a current one.) Note: In an effort to forestall "I don't think it's hardware because <blah-blah-blah>", remind yourself that you've had three "mysterious" issues in two weeks' time. Coincidence just isn't a particularly strong explanation. Ditto gremlins. It's vastly more likely that either (a) you're actively mucking about with your rig, or (b) you have a hardware issue. (And if you are actively mucking about with your rig, stop it.) |
Hello, I am trying to backport octave-struct and octave-optim from stretch to jessie (amd64) following the instructions on: https://wiki.debian.org/SimpleBackportCreation I have already successfully compiled and installed octave 4.0.0-5 (and octave-pkg-dev and some more dependencies) from stretch and am trying to add the optimization toolkit (octave-struct, octave-optim) (I have no package sources from stretch or any other versions in my sources.list.) I adapted the revision numbers of all packages as suggested on the site on simple backport creation (~bpo80+1). When trying to install the backported package of octave struct I get the following error: root@TRILLIAN:/home/toquinho/src/backports_jessie/octave-struct_1_0_11_1# dpkg -i ./octave-struct_1.0.11-1~bpo80+1_amd64.deb Selecting previously unselected package octave-struct. (Reading database ... 472619 files and directories currently installed.) Preparing to unpack .../octave-struct_1.0.11-1~bpo80+1_amd64.deb ... Unpacking octave-struct (1.0.11-1~bpo80+1) ... dpkg: dependency problems prevent configuration of octave-struct: octave (4.0.0-5~bpo80+1) breaks octave-struct (<< 1.0.11-1) and is triggered. Version of octave-struct to be configured is 1.0.11-1~bpo80+1. dpkg: error processing package octave-struct (--install): dependency problems - leaving unconfigured Processing triggers for octave (4.0.0-5~bpo80+1) ... Errors were encountered while processing: octave-struct root@TRILLIAN:/home/toquinho/src/backports_jessie/octave-struct_1_0_11_1# Both octave 4.0.0-5 and octave-struct 1.0.11-1 are built from the dsc files on debian/packages (e.g., https://packages.debian.org/stretch/octave-struct), which is why I do not understand why there should be dependency problems. Any help is greatly appreciated. Toquinho | You may have to deconfigure the packages while installing with dpkg, which is done with the "-B" flag": Code: Select alldpkg -i -B <package1> <package2> <package3> ... |
Hello! Thank you very much in advance for helping. I'm running Debian + LXDE in a VirtualBox. Here are the details: Code: Select all➜ ~ hostnamectl Static hostname: debian64 Icon name: computer-vm Chassis: vm Machine ID: ############################# Boot ID: ########################### Virtualization: kvm Operating System: Debian GNU/Linux stretch/sid Kernel: Linux 4.2.0-1-amd64 Architecture: x86-64 I really would like to jump into my desktop environment when I start my machine without the need to enter my user name and password. Apparently this is very easy to do. I added the following lines to my /etc/lightdm/lightdm.conf Code: Select allpam-service=lightdm pam-autologin-service=lightdm-autologin autologin-user=username autologin-user-timeout=0 session-wrapper=/etc/lightdm/Xsession And also added my user to the autologin group Code: Select allgroupadd -r autologin gpasswd -a username autologin As you can imagine, it didn't work. Otherwise I wouldn't be here I also tried to install Slim and enable autologin adding the following line to the /etc/slim.conf Code: Select allauto_login = yes That didn't work either! Am I missing anything? Has any one out there achieved enabling autologin in LXDE? Many thanks! | This is a useful site: http://lxlinux.com/#12 |
Hi all, finally I got some free time to investigate on a shutdown delay problem on my debian 8.2 desktop system. The shutdown process take 90 seconds to complete, that's due to this problem: Code: Select alla stop job is running for session 1 of user Luca Any help please ? Thanks! | Give us more info about your system, and post your sources.list: Code: Select allcat /etc/apt/sources.list Place the output in ''code''. |
I have an old laptop hp530 running Debian 7.9 LXDE 32-bit. everything working as expected. But I can't get redshift to run at boot. I used Synaptic Package Manage to install redshift & gtk-redshift was included. Redshift doesn't startup automatically when I start laptop, I understand it needs to know my location to start working. So I found my lat and long and included these in a "redshift.conf" config file. I found a template for this here http://jonls.dk/redshift/ contents as follows.... Code: Select all; Global settings for redshift [redshift] ; Set the day and night screen temperatures temp-day=6500 temp-night=3400 ; Enable/Disable a smooth transition between day and night ; 0 will cause a direct change from day to night screen temperature. ; 1 will gradually increase or decrease the screen temperature. transition=1 ; Set the screen brightness. Default is 1.0. ;brightness=0.9 ; It is also possible to use different settings for day and night ; since version 1.8. ;brightness-day=0.7 ;brightness-night=0.4 ; Set the screen gamma (for all colors, or each color channel ; individually) gamma=0.8 ;gamma=0.8:0.7:0.8 ; This can also be set individually for day and night since ; version 1.10. ;gamma-day=0.8:0.7:0.8 ;gamma-night=0.6 ; Set the location-provider: 'geoclue', 'geoclue2', 'manual' ; type 'redshift -l list' to see possible values. ; The location provider settings are in a different section. location-provider=manual ; Set the adjustment-method: 'randr', 'vidmode' ; type 'redshift -m list' to see all possible values. ; 'randr' is the preferred method, 'vidmode' is an older API. ; but works in some cases when 'randr' does not. ; The adjustment method settings are in a different section. adjustment-method=randr ; Configuration of the location-provider: ; type 'redshift -l PROVIDER:help' to see the settings. ; ex: 'redshift -l manual:help' ; Keep in mind that longitudes west of Greenwich (e.g. the Americas) ; are negative numbers. [manual] lat=55.8 lon=-4.4 ; Configuration of the adjustment-method ; type 'redshift -m METHOD:help' to see the settings. ; ex: 'redshift -m randr:help' ; In this example, randr is configured to adjust screen 1. ; Note that the numbering starts from 0, so this is actually the ; second screen. If this option is not specified, Redshift will try ; to adjust _all_ screens. [randr] screen=0 I copied this file with following command: Code: Select allcp /home/hugh/Desktop/Linux/Redshift/hp530-Debian/redshift.conf ~/.config/ now when I check to see if file was copied ok... Code: Select allroot@hp530-vm-debian-7-lxde:/home/hugh/.config# cd ~/.config/ root@hp530-vm-debian-7-lxde:~/.config# ls redshift.conf root@hp530-vm-debian-7-lxde:~/.config# I can see the file copied ok, but when I re-start laptop, redshift still doesn't start on boot. I can see the Redshift icon when I navigate to Start > Accessories > Redshift. But when I click the shortcut, nothing happens, no icon in applicator panel on bottom of desktop, so maybe it still can't get my lat and longitude I found that when I enter following command in terminal... Code: Select all$ gtk-redshift -l 55.82:-4.42 -t 6500:3400 Redshift starts with icon in applicator panel on bottom of desktop. Display goes a warm colour. So the program is working ok but doesn't start unless I run the command and give it my lat and long manually. When I look in Preferences > Desktop Session Settings, I don't see an entry for Redshift in the tabbed region "Automatically Started Applications". So I am wondering should Redshift have an entry here? I would like Redshift to start automatically so I wondered what is the best method to achieve this. I'm not an expert in linux but I can use the terminal as long as I know the correct synatax to enter. Any help would be appreciated. | http://ubuntuforums.org/showthread.php?t=1984904 |
hi guys first time with debootstrap, i followed: https://wiki.debian.org/de/Debootstrap the error i get on boot looks like this: Code: Select allhttp://erntehelfer.ddns.net/tmp/IMG_20151121_184039.jpg they did not mention lvm speficically so i just installed lvm2 inside the chroot and created my fstab like this: Code: Select all/dev/mapper/debian--unstable-root / ext4 errors=remount-ro 0 1 /dev/mapper/debian--unstable-home /home ext4 defaults 0 2 /dev/mapper/debian--unstable-tmp /tmp ext4 defaults 0 2 /dev/mapper/debian--unstable-var /var ext4 defaults 0 2 having one mounted from jessie looks like this: Code: Select all/dev/mapper/debian--unstable-root on /home/julius/other-systems/debian-unstable type ext4 (rw,relatime,data=ordered) so i guess the fstab is correct i already tried to "refresh" the inittab with: Code: Select allupdate-initramfs -u command ran ok, but no change at boot. what am i missing? | in /etc/boot/grub.conf (on the other system that was running and "hosting" grub) i changed root=/dev/dm-4 for root=/dev/debian--unstable-root it boots |
I'm having trouble upgrading Iceaweasel in Debian 8 I used these instructions: http://codelinks.pachanka.org/post/5502 ... -gpg-error Could not mark packages: iceweasel: Depends: libdbus-1-3 (>=1.9.14) but 1.8.20-0+deb8u1 is to be installed Depends: libnss3 (>=2:3.19) but 2:3.17.2-1.1+deb8u2 is to be installed Depends: libstdc++6 (>=5.2) but 4.9.2-10 is to be installed Depends: libvpx2 (>=1.4.0) but it is not installable what other dependencies are needed? How do you upgrade Iceweasel and why does it have an old version to begin with? | Debian uses ESR versions of Iceweasel/Firefox. To properly upgrade Iceweasel in Debian, see this page: http://mozilla.debian.net/ |
Has anyone had success getting Enemy Territory Quake wars to run in Sid? I have steam working, but I can't get the popular linux title ETQW to work. First I was getting the typical error when ia32-libs is not installed. So instead I ran "apt-get install libsdl1.2debian:i386" and that seemed to make the game get further in boot instead of the lib error, however then I'm spammed with (to the point I can't scroll up to read the error) ... pure virtual method called terminate called recursively pure virtual method called Segmentation fault so I don't know what to do now, could it be as simple as installing more packages? I've had the game run flawlessly on wheezy before, never had this error before. I am using Sid with an ASUS AMD R7 370, open source driver, and kernel 4.3 same error when i drop to root permissions | Post the exact error that you get (screenshot preferred). Are you running this through wine or maybe client? It seems like quake wars has been removed from the store. There couldve been issues with the game? Or just pulled the plug Please for the live of god, do not run a graphical application as root, especially games. |
I have DELL Vostro 1520 laptop running Debian 8.2 64-bit with Cinnamon desktop Using Synaptic Package Manager: install gtk-redshift with dependencies here is the output, not sure if it looks ok as I don't have a lot of tech knowledge of linux yet ... Code: Select all(synaptic:2085): GLib-CRITICAL **: g_child_watch_add_full: assertion 'pid > 0' failed The gtk frontend needs a working python-gtk2 and python-glade2. Those imports can not be found. Falling back to pager. The error is: No module named glade Selecting previously unselected package libdbusmenu-glib4:amd64. (Reading database ... 156964 files and directories currently installed.) Preparing to unpack .../libdbusmenu-glib4_12.10.2-1_amd64.deb ... Unpacking libdbusmenu-glib4:amd64 (12.10.2-1) ... Selecting previously unselected package libdbusmenu-gtk3-4:amd64. Preparing to unpack .../libdbusmenu-gtk3-4_12.10.2-1_amd64.deb ... Unpacking libdbusmenu-gtk3-4:amd64 (12.10.2-1) ... Selecting previously unselected package libgeoclue0:amd64. Preparing to unpack .../libgeoclue0_0.12.99-4_amd64.deb ... Unpacking libgeoclue0:amd64 (0.12.99-4) ... Selecting previously unselected package libxcb-randr0:amd64. Preparing to unpack .../libxcb-randr0_1.10-3+b1_amd64.deb ... Unpacking libxcb-randr0:amd64 (1.10-3+b1) ... Selecting previously unselected package libindicator3-7. Preparing to unpack .../libindicator3-7_0.5.0-2_amd64.deb ... Unpacking libindicator3-7 (0.5.0-2) ... Selecting previously unselected package libappindicator3-1. Preparing to unpack .../libappindicator3-1_0.4.92-3.1_amd64.deb ... Unpacking libappindicator3-1 (0.4.92-3.1) ... Selecting previously unselected package gir1.2-appindicator3-0.1. Preparing to unpack .../gir1.2-appindicator3-0.1_0.4.92-3.1_amd64.deb ... Unpacking gir1.2-appindicator3-0.1 (0.4.92-3.1) ... Selecting previously unselected package redshift. Preparing to unpack .../redshift_1.9.1-4_amd64.deb ... Unpacking redshift (1.9.1-4) ... Selecting previously unselected package gtk-redshift. Preparing to unpack .../gtk-redshift_1.9.1-4_all.deb ... Unpacking gtk-redshift (1.9.1-4) ... Processing triggers for man-db (2.7.0.2-5) ... Processing triggers for desktop-file-utils (0.22-1) ... Processing triggers for mime-support (3.58) ... Processing triggers for hicolor-icon-theme (0.13-1) ... Processing triggers for menu (2.1.47) ... Setting up libdbusmenu-glib4:amd64 (12.10.2-1) ... Setting up libdbusmenu-gtk3-4:amd64 (12.10.2-1) ... Setting up libgeoclue0:amd64 (0.12.99-4) ... Setting up libxcb-randr0:amd64 (1.10-3+b1) ... Setting up libindicator3-7 (0.5.0-2) ... Setting up libappindicator3-1 (0.4.92-3.1) ... Setting up gir1.2-appindicator3-0.1 (0.4.92-3.1) ... Setting up redshift (1.9.1-4) ... Setting up gtk-redshift (1.9.1-4) ... Processing triggers for libc-bin (2.19-18+deb8u1) ... Processing triggers for menu (2.1.47) ... I can see shortcut (N) "Applications > Accessories > Redshift" but not working because no config file yet. next copy config file with following command: Code: Select allsudo cp /home/hugh/Dropbox/Tech/Linux/Redshift/DELL-Vostro-Debian8/redshift.conf ~/.config/ Code: Select all$ cd ~/.config/ # can now see "redshift.conf" here I was able to start redshift manually (N) Menu > Accessories > Redshift # started OK, and icon now visible in applicator try at bottom of screen, so far so good. (N) Applications > System Tools > Preferences > Startup Applications # no entry for Redshift so add entry.... Code: Select allName = Redshift Command = gtk-redshift Comment = Redshift adjusts the color temperature of your screen according to your surroundings reboot redshift didn't start so try adding Startup Delay = 5 seconds reboot but still didn't start, so I tried running redshift from terminal... Code: Select all$ gtk-redshift Code: Select allhugh@dell-vostro-debian:~$ gtk-redshift bash: gtk-redshift: command not found hugh@dell-vostro-debian:~$ when I run "redshift" in terminal it works ok but no icon appears in applicator tray on bottom of screen I checked if "gtk-redshift.desktop" exists in "~/.config/autostart" Code: Select allhugh@dell-vostro-debian:~$ cd ~/.config/autostart hugh@dell-vostro-debian:~/.config/autostart$ ls dropbox.desktop gtk-redshift.desktop hugh@dell-vostro-debian:~/.config/autostart$ cat gtk-redshift.desktop [Desktop Entry] Type=Application Exec=gtk-redshift Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name[en_GB]=Redshift Name=Redshift Comment[en_GB]=Redshift adjusts the color temperature of your screen according to your surroundings Comment=Redshift adjusts the color temperature of your screen according to your surroundings X-GNOME-Autostart-Delay=5 hugh@dell-vostro-debian:~/.config/autostart$ looks ok but just not starting on boot, any ideas where I went wrong with my setup? any help would be appreciated. | The name of the binary is redshift-gtk and not gtk-redshift. See the package filelist [1]. [1] https://packages.debian.org/jessie/all/ ... t/filelist |
SOLUTION: see the last of my posts hi, playing around with backuppc and now i would like to restore the "default" config files in /etc/backuppc. i followed these instructions: http://askubuntu.com/questions/66533/ho ... tion-files i know its for ubuntu, but they used dpkg. 1. dpkg -S config.pl Code: Select allbackuppc: /usr/share/backuppc/conf/config.pl 2. mv old config dir 3. reinstall configs Code: Select allapt-get -o Dpkg::Options::="--force-confmiss" install --reinstall backuppc thing is, only some of the config files came back. the new config dir got: Code: Select allapache.conf hosts htpasswd localhost.pl pc the old config dir got: Code: Select allapache.conf config.pl hosts htpasswd localhost.pl localhost.pl.old LOCK pc at least config.pl is missing. and that one is not automatically regenerated when first logging in. so how do i get a clean copy from the original files with apt without opening the archive by hand? | The config.pl script isn't in /etc/backuppc by default. Check the filelist of the package [1] or the path provided by dpkg -S. I think you have copied /usr/share/backuppc/conf/config.pl to /etc/backuppc/ after your first installation of backuppc. Therefore apt can't do that for you because apt doesn't know what you have done after the installation. [1] https://packages.debian.org/jessie/amd6 ... c/filelist |
Debian Jessie XFCE. I use this script to periodically back up my home directory to an external drive: Code: Select allcp -R -u /home/albert/* /media/albert/"Expansion Drive"/albert/ The configuration files, for example .icedove, are not copied. Can I modify the cp command to include them also? | Don't specify the files: Code: Select allcp -R -u /home/albert /media/albert/"Expansion Drive"/albert/ This would be better though: Code: Select allrsync -aAXv /home/albert /media/albert/"Expansion Drive"/albert/ This preserves symbolic links, permissions and ownerships, modification times, ACLs and extended attributes. |
My previously running debian system recently started failing with systemd failure messages as some services are being started. It never completes. I can log into recovery mode. I added systemd.log_target=kmsg systemd.log_level=debug into my grub parameters. After I do that all that I see scrolling down the page on boot are: systemd-journald[36] /dev/kmsg buffer overrun, some messages lost and the occasional systemd[1] Looping too fast Throttling execution a little Is there a way that I can boot without systemd using sysvinit? How can I figure out and fix what is wrong? | Ask Lennart why it's coded to do that! Did that ever happen with sysvinit? |
Does Debian gdb-multiarch have some special signal numbering? I've been putting together a kind of gdb remote agent - bare metal and something between a stub and server. I sent T31 and got: Code: Select all [r $][T][3][1][#][b][8]Packet received: T31 ... Program received signal SIG37, Real-time event 37. I was expecting SIGUSR2. And when I sent T10: Code: Select all [r $][T][1][0][#][b][5]Packet received: T10 ... Can't send signals to this remote system. SIGURG not sent. Sending packet: $c#63...[\x00][\x00][\x00][\x00][\x00][ r +]Ack I expected SIGBUS and stopping - not SIGURG and an automatic 'c'-command. In 7.10.0 gdb repo (signals.def): Code: Select all... #define GDB_SIGNAL_FIRST GDB_SIGNAL_0 SET (GDB_SIGNAL_HUP, 1, "SIGHUP", "Hangup") SET (GDB_SIGNAL_INT, 2, "SIGINT", "Interrupt") SET (GDB_SIGNAL_QUIT, 3, "SIGQUIT", "Quit") SET (GDB_SIGNAL_ILL, 4, "SIGILL", "Illegal instruction") SET (GDB_SIGNAL_TRAP, 5, "SIGTRAP", "Trace/breakpoint trap") SET (GDB_SIGNAL_ABRT, 6, "SIGABRT", "Aborted") SET (GDB_SIGNAL_EMT, 7, "SIGEMT", "Emulation trap") SET (GDB_SIGNAL_FPE, 8, "SIGFPE", "Arithmetic exception") SET (GDB_SIGNAL_KILL, 9, "SIGKILL", "Killed") SET (GDB_SIGNAL_BUS, 10, "SIGBUS", "Bus error") SET (GDB_SIGNAL_SEGV, 11, "SIGSEGV", "Segmentation fault") SET (GDB_SIGNAL_SYS, 12, "SIGSYS", "Bad system call") SET (GDB_SIGNAL_PIPE, 13, "SIGPIPE", "Broken pipe") SET (GDB_SIGNAL_ALRM, 14, "SIGALRM", "Alarm clock") SET (GDB_SIGNAL_TERM, 15, "SIGTERM", "Terminated") SET (GDB_SIGNAL_URG, 16, "SIGURG", "Urgent I/O condition") SET (GDB_SIGNAL_STOP, 17, "SIGSTOP", "Stopped (signal)") SET (GDB_SIGNAL_TSTP, 18, "SIGTSTP", "Stopped (user)") SET (GDB_SIGNAL_CONT, 19, "SIGCONT", "Continued") SET (GDB_SIGNAL_CHLD, 20, "SIGCHLD", "Child status changed") SET (GDB_SIGNAL_TTIN, 21, "SIGTTIN", "Stopped (tty input)") SET (GDB_SIGNAL_TTOU, 22, "SIGTTOU", "Stopped (tty output)") SET (GDB_SIGNAL_IO, 23, "SIGIO", "I/O possible") SET (GDB_SIGNAL_XCPU, 24, "SIGXCPU", "CPU time limit exceeded") SET (GDB_SIGNAL_XFSZ, 25, "SIGXFSZ", "File size limit exceeded") SET (GDB_SIGNAL_VTALRM, 26, "SIGVTALRM", "Virtual timer expired") SET (GDB_SIGNAL_PROF, 27, "SIGPROF", "Profiling timer expired") SET (GDB_SIGNAL_WINCH, 28, "SIGWINCH", "Window size changed") SET (GDB_SIGNAL_LOST, 29, "SIGLOST", "Resource lost") SET (GDB_SIGNAL_USR1, 30, "SIGUSR1", "User defined signal 1") SET (GDB_SIGNAL_USR2, 31, "SIGUSR2", "User defined signal 2") ... | With lengthy tests I've got this far with the gdb-multiarch 7.7.1+dsfg-5 understanding of signals. The asterisk means that debugging couldn't continue because gdb thinks its impossible considering the meaning of the signal or because it automatically continues back to the excepting instruction. Do they look normal? My remote target is an ARM if that means anything. 2 SIGINT 4 SIGILL 5 SIGTRAP 6 SIGABRT * 7 SIGEMT 8 SIGFPE 9 SIGKILL 10 SIGURG * 11 SIGSTOP 12 SIGTSTP 13 SIGCONT * 14 SIGCHLD * 15 SIGTTIN * 16 SIGTTOU 17 SIGIO * 18 SIGXCPU * 19 SIGXFSZ 20 SIGPWR 21 SIGPOLL * 22 SIGWIND 23 SIGPHONE 24 SIGWAITING * 25 SIGLWP * 26 SIGDANGER 27 SIGGRANT 28 SIGRETRACT 29 SIGMSG 30 SIG36, Real-time event 36 31 SIG37, Real-time event 37 |
Don't know what went wrong. I updated Wheezy, apt-get update, and once completed I typed exit to exit the terminal. Well, the terminal did not close and then the whole system appears to have locked up (ie not responding to anything). I could not even enter into a tty session (alt F1). So, even thought I hated to do it I pushed the reset button. All kinds of problems. Grub did not want to load, then eventually the system tried to boot my Windows drive but never loaded. Tried to boot a live CD (Knoppix) and that would not load. Eventually I got the system to boot Wheezy in the recovery mode, but I still can not boot in the normal mode. I know that one can screw things up at the end of an update if one exits the terminal before all of the triggers are processed, but I explicitly waited for the root prompt to appear before closing the terminal (or trying to). What might have gone wrong and what can I do to fix things. I will try to provide whatever info is needed to help out. Tried to attach the syslog but get a server error. | WELL, maybe there really isn't a problem. Having gotten the system to boot in the recovery mode, and then doing a normal shutdown I was able to boot normally. So maybe whatever went wrong fixed itself! Is that possible? One thing I did, after getting it to boot in recovery mode was I did a grub update. Help me Mr. Wizard, I don't want to be a frog ! LOL! I spoke too soon. Shut down the system to reboot and had problems again. Seems that the only thing that works is to totally shut off power and then power on the system. Yikes ! |
I am currently using Wheezy 7.9 and the Gnome Classic desktop. Recently started to develop a few bad sectors on the hard drive so decided I better get really serious about backing up, at minimum, my /home directory. To that end I am trying to come to grips with rsync. In the past I had used cp to copy files but it is slow and not convenient. So I made my first backup, to en external USB HDD, and it worked great. Just a couple of things that I would like to know. First, in order to do the backup I issued the following command: Code: Select all/home/john# rsync -avh /home/john/ /media/47cba47a-efdd-4717-a55b-43e035e4df11/home/john/backup_11NOV2015/ The question is this; is there an alternative to using /media/47cba47a-efdd-4717-a55b-43e035e4df11 It is rather cumbersome. The drive is /dev/sdg1 . Second question is about restoring the backup. Assuming that I am in a terminal as root would I issue something like this: Code: Select all/home/john# rsync -avh /media/47cba47a-efdd-4717-a55b-43e035e4df11/home/john/backup_11NOV2015/ /home/john I have read a ton of stuff about rsync and it mostly goes over my head, so some kind words of help and encouragement would be appreciated. | Assuming that I am in a terminal as root would I issue something like this: Code: Select all/home/john# rsync -avh /media/47cba47a-efdd-4717-a55b-43e035e4df11/home/john/backup_11NOV2015/ /home/john No. You're missing a trailing slash. The rsync documentation is very clear and quite emphatic on this point. The best way to learn rsync is to do a few, small test runs and observe the results, so that you can learn exactly what to expect from a given syntax. Also, as noted in the rsync documentation, you can experiment with rsync in a totally nondestructive way by adding the -n ("dry run") flag to any rsync command. The command will be processed exactly as it would if you were performing the operation, but nothing will actually be written to disk. It's a very handy tool for avoiding surprises. (If you had done a dry-run with the syntax above, for instance, you'd have seen rsync "copy" over everything from your backup, which is more assuredly not the behavior you would want nor expect when restoring a fresh rsync backup.) If you're allergic to CLI, grsync is a decent enough GUI for rsync. (Although it will not save you from "trailing slash" issues like the one noted above.) Afterthought: Once you become comfortable enough with rsync to let it do its thing unscrutinized, removing the -vh flag will make large runs go measurably faster. (Sorry for all the edits; I'm still half asleep, and my fingers seem to have a mind of their own this morning.) |
I am running Wheezy 7.9 (32 bit) and using Gnome Classic desktop. I have recently had several issues with system "crashes" and such, see some of my recent posts, and for now things seem to be working okay. As part of my attempts to "fix" the problems I looked at the hard drive using the SMART disk utility, and also ran "smartctl". The SMART utility reports that there are 3 bad sectors on the drive. When I run fsck, from a live CD, it does not report finding bad sectors. So why would fsck not find something that is reported by smartctl? Which one should I believe? As a precaution I am now making daily backups of my /home directory and purchased a new HD just in case. Have not yet installed the new HD but at least I am prepared. | I think SMART checks for hardware problems whereas fsck checks for file system problems. If the hard drive has remapped bad sectors as unwriteable, there may not be any file system errors there. |
Hello fellow Debian users, a few days ago I had noticed that my workstation (running debian testing) is having a constant load of about 0.9 (+/-0.1), even while the system is completly idle. The system starts with a normal load and then goes up to about 0.9 within a few minutes and then will stay there forever (well it can get higher, but never lower). As you can see in this graph: http://imgur.com/GTmQMkQ This is the load graph after the system runs some time: http://imgur.com/m4qpIWf I have tried everything I know to find the cultprint but there is no cpu usage and no io usage. I even have disabled the desktop and still have this problem. Also I have tried booting an older Kernel (4.1 and 3.16) with no difference in the load. Here is some information about my system: Code: Select all» uname -a Linux localhorst 4.2.0-1-amd64 #1 SMP Debian 4.2.3-2 (2015-10-14) x86_64 GNU/Linux [iostat] http://pastebin.com/QHpub6v7 [ps] http://pastebin.com/jF89Ppzc [dmesg] http://pastebin.com/wBVmejzg [inxi] http://pastebin.com/27Fx6uem Any help identifying the source of the load is highly appreciated Thanks and best regards DerBunman | It's a crude "first-cut," but I'd be curious to know if the problem is reproducible with a Wheezy Live CD. (And yes, I mean Wheezy, not Jessie.) Or, for that matter, with a live version of AntiX. It'd also be incredibly handy to know the CPU specs for your machine. A load average of 0.9 on a 20-year old Pentium machine is a very different thing than a load average of 0.9 on a modern-day hex-core CPU. And I'd also ask you to clarify your definition of "idle." In this context, "idle" should mean absolutely no end-user applications loaded into memory, regardless of whether you think of them as "running." |
Hi All. The world of torrents (eg. PirateBay) and bit torrents are completely new to me - never used a torrent service to date, and now I'm looking at downloading my debian using a bit torrent service. I have a few questions: 1. Are torrents and bit torrents the same thing? Are both peer-to-peer file sharing? 2. If so, when I'm downloading Debian via bit torrent - where are those other peers? Are they just regular people#s computers - or ones set up and administered by Debian? I'm asking this since if I'm downloading from the community - how could I be certain that what I'm getting hasn't been corrupted in any way? 3. When I first installed Debian 8 a month ago (it's been and remains an interesting ride) I used bit torrent since the Debian pages said they preferred you did that, rather than http. I was downloading several .iso images. I formed the impression that even when I had downloaded all the files, there was still network activity. Is this because when you use a bit-torrent service - your downloaded files are also visible to others and they start downloading the data from you? 4. If this is correct - how safe can peer-to-peer file sharing - isn't your system pretty exposed - even if behind a firewall? I don't have much choice anyway - since the Debian release I want is offered via http, bit-torrent only. But, as a newbie - I was just interested in what actually happens when you download anything this way and any related security implications. Any clarification would be really appreciated - thanks in advance ... Dave | 1. Yes 2. Yes. BT does checksum on every bit received so is very reliable. 3. Yes 4. Probably more danger from dodgy torrents from dodgy torrent sites than BT itself. If you download the .torrent file from a trusted site it's quite safe. You should verify the checksum of the downloaded file. I've never had a fail from distros downloaded via BT. To be extra cautious I always change the default BT port and enable encryption (probably overkill for just downloading Debian isos). |
Hi, I'm looking for a text based browser (like elinks) that works with tor??....do you know someone?? Thanks t all! | I've only just started looking into this due to this http://www.bbc.co.uk/news/uk-politics-34715872 https://trac.torproject.org/projects/to ... ebBrowsers https://trac.torproject.org/projects/tor/ticket/7136 https://gitweb.torproject.org/torsocks.git/ |
hello guys, i need some help my system doesn't boot anymore when i turn on the laptop, instead of the normal grub screen, i get the following: "error: file not found Entering rescue mode... grub rescue> _" i tried google it but none of the suggested ways to fix it couldn't help me i tried also to make a bootable usb w/ unetbootin but all the distros failed to load w/ a syslinux boot error message so i really need to fix the existing debian installation to get access to my files i need for the university :/ it's debian stable (6.0.4) on hp mini 210 thanks in advance | Do you have any bootable live linux CD/DVD or USB? What is shown if you type "ls" and press ENTER key at "grub rescue >" ? Code: Select allls Can you get in BIOS configuration menu? If you can, is not any internal HDD detected by BIOS? |
I knew I'd have to ask a question sooner or later, so here goes. System is Wheezy 7.9 with lightdm and MATE desktop. I have 128GB SSD with various partitions for operating systems and a separate HDD for the /home folders for each OS. Wheezy is my primary system, the others, apart from the original XP are experimental. /etc/lightdm/lightdm-gtk-greeter.conf is Code: Select all# # background = Background file to use, either an image path or a color (e.g. #772953) # show-language-selector (true or false) # theme-name = GTK+ theme to use # font-name = Font to use # xft-antialias = Whether to antialias Xft fonts (true or false) # xft-dpi = Resolution for Xft in dots per inch (e.g. 96) # xft-hintstyle = What degree of hinting to use (hintnone, hintslight, hintmedium, or hintfull) # xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr) # [greeter] background=/usr/share/images/desktop-base/login-background.svg #show-language-selector=false theme-name=Adwaita #font-name= xft-antialias=true #xft-dpi= xft-hintstyle=hintfull xft-rgba=rgb /var/log/lightdm/x-0-greeter.log is empty. /usr/share/images/desktop-base/login-background.svg has a date of 2012, so has never been modified. The problem is that each time I use the Ubuntu system and I change back to Debian, the greeter background contains snippets of whatever was displayed while I was in Ubuntu. What I don't understand is how this can happen, given that the operating systems are installed in separate partitions with separate /home partitions as well. After I have used Debian and restart, the greeter screen is clear, as it should be. http://forums.debian.net/search.php?key ... background didn't turn up any answers, nor did Google. I guess that if I can understand how this can happen then I may be on the way to fixing it. Ideas? | Thanks dasein. Here I was thinking that Ubuntu had written stuff to a HDD somewhere. That was definitely the wrong tree to be barking up. Interestingly I remember the same thing happening when playing with Mint, so clearly the Ubuntu heritage was showing through there, too. Oh well, it's just a distro that I wanted to try, given that I like the MATE interface and wondered what Ubuntu had done with it. From a purely user perspective it seems ok. Lots of features that look good, but haven't delved under the hood much. Probably a good one for the Windows refugees. Anyway, like dzz says, it's probably not worth trying to fix unless I was to use it a lot more. Appreciate the help and will mark "solved". |
Hi I am trying to install medit (http://www.ann.jussieu.fr/frey/software.html), a tool for mesh visualization. When I execute the makefile, I get the error Code: Select allcc -o medit-2.3-linuxCC -s -static-libgcc ./objects/*.o /usr/lib/x86_64-linux-gnu/libglut.a /usr/lib/x86_64-linux-gnu/libGL.so /usr/lib/x86_64-linux-gnu/libGLU.so -L/usr/X11R6/lib -lXmu -lXext -lX11 -lm /usr/bin/ld: /usr/lib/x86_64-linux-gnu/libglut.a(libglut_la-freeglut_gamemode.o): undefined reference to symbol 'XF86VidModeGetViewPort' //usr/lib/x86_64-linux-gnu/libXxf86vm.so.1: error adding symbols: DSO missing from command line I tried searching for "undefined reference to symbol 'XF86VidModeGetViewPort'", and it seems to be related to glut. I installed freeglut3 and freeglut3-dev from synaptic, but it didnøt solve the issue, I would be very happy to hear if someone knows of it. Thanks in advance, Niles. | I wouldn't have tried installing anything from that site, I can't find anything for any instructions or support , on that software,.. https://wiki.debian.org/DontBreakDebian From: Don't 'make install' It's quite easy to compile software from source code tarballs downloaded from the software's website, but not always so easy to remove it later. Often the instructions that come with the source code include instructions to use commands like ./configure && make && make install. When you install software this way, you will not be able to remove it with apt-get or Synaptic. The APT packaging system can only remove software that was installed by the APT packaging system. Even worse, software installed this way can sometimes conflict with the software packaged for Debian. Software installed this way also does not benefit from security updates the way that Debian packages do. If you want to keep your system up to date without having to manually compile and reinstall for every update, stick to the Debian packages. |
I have seriously looked at posts regarding missing keyring but don't really find an answer that helps me. I am running Wheezy 7.9 and LXDE desktop. I just updated the flashpluggin and I see the following: Code: Select allupdate-flashplugin-nonfree --install WARNING: gnome-keyring:: couldn't connect to: /home/john/.cache/keyring-1AXUON/pkcs11: No such file or directory --2015-10-19 12:55:39-- https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.i386.tar.gz WARNING: gnome-keyring:: couldn't connect to: /home/john/.cache/keyring-1AXUON/pkcs11: No such file or directory Resolving fpdownload.adobe.com (fpdownload.adobe.com)... 184.51.233.92 The update proceeded normally and installation was complete. However, I have noticed this same warning about the missing keyring on other occasions. Does this need to be fixed and if so how do I do it? Thanks. | I can not explain it any better then they do here: https://wiki.debian.org/SecureApt There is more info available : On a Debian system, how to create key ring You may want to pay particular attention to this, since you are using Wheezy https://wiki.debian.org/Backports |
I've been installing Debian systems for some time now and I have always tried my best to respect the guidelines of the official installation guide, using the proper installation mediums, with the correct architecture for the machine being installed. Recently I've met another person that defends that it doesn't mater for more recent machines (starting from Pentium Dual Core CPU's) if the installation medium is for i386 or AMD64 architecture, as modern CPU are capable of handling 64 bits instructions. I've even seen the person using AMD64 Debian installation discs to install machines with Intel CPU. My counter-argument is to simply state that if it did not matter, different architecture installation mediums wouldn't be provided, plainly put. Assuming I'm not completely putting my foot in my mouth with the next question: what sort of problems can rise from using different architecture mediums as described? Could someone share some wisdom and knowledge on this subject? | qyron wrote:Assuming I'm not completely putting my foot in my mouth with the next question: what sort of problems can rise from using different architecture mediums as described? Two results are possible depending on the combination of architecture and image: 1. It will simply just not work or 2. Debian can't use the full capacity of the hardware. qyron wrote:I've even seen the person using AMD64 Debian installation discs to install machines with Intel CPU.I think you got something wrong. The i386 port of Debian [1] isn't just for intel cpus, it is for all x86 cpus [2]. The AMD64 port [3] doesn't only support amd cpus, it is for all x86-64 cpus [4]. [1] https://www.debian.org/ports/i386/ [2] https://en.wikipedia.org/wiki/X86 [3] https://www.debian.org/ports/amd64/ [4] https://en.wikipedia.org/wiki/X86-64 |
(transferred from the Hardware subforum) I'm still trying to burn Blu-Ray backup discs using K3B on Wheezy with the MATE desktop. I got the dreaded I/O error right at the end of the Burn phase. Yes, I did search the internet. I'd try Nero Linux 4 but it seems to be not available any more. v&n wrote:Caitlin wrote:.... I did get a warning that there was only 2.1 GB of free space in the /tmp directory. Perhaps I can switch it to another disk partition if someone tells me how. You may try mounting an empty partition with enough space as /tmp. Or, you can "bind-mount" an individual directory as /tmp - it will help if the partition the directory resides on has enough free space. You can also tell K3B which directory to use as its 'temporary directory' (Settings > Configure K3B > "Default Temporary Directory" under "Misc" category). I don't have enough space on any partition to do this -- but I will plug in an external 1 TB hard disk and put it there -- that should help. v&n wrote:However, you should first try burning to an image if K3B allows that for bluray discs, I'm not sure what you mean by that. You mean constructing an ISO image somewhere on my hard disk? I suppose I could but then how would I get the image onto a physical disc? v&n wrote:Last, if the above suggestions don't seem to help, or if you have more questions, I recommend you start a new thread and ask for help there, as the topic of this thread is not related to your current problem. Consider it done! Caitlin | However, you should first try burning to an image if K3B allows that for bluray discsI believe it's "only create image" in the burn dialog, you could also try writing the image manually with e.g. 'growisofs -speed=2 -dvd-compat -Z /dev/dvd=image.iso'. Also maybe worth a shot: Set "Show advanced GUI elements" in the "Advanced" page of K3B settings, this will allow you to select the writing application in the burn dialog. See if forcing cdrecord rather than wodim here helps (or just try all available options). Disclaimer: I don't actually have a bluray drive, so this may not be 100% tested. |
Hi, Is it completely safe to install backported software like the Kernel, Libreoffice, and such? I'd like to upgrade all packages that are available to jessie-backports. Thanks | WeLoveDebian wrote:Is it completely safe to install backported software like the Kernel, Libreoffice, and such? No. I'd like to upgrade all packages that are available to jessie-backports. Generally regarded as a Bad Idea. A simple search will identify the reason(s) why. |
Hi all, See this :- As can be seen something is missing, probably a font, but unable to know which, can somebody help or figure out ? They are the ones which have rectangular boxes and have numbers and words on them. | It's a unicode symbol -- a right-pointing magnifying glass (apparently). http://graphemica.com/%F0%9F%94%8E FWIW it doesn't show in my FreeBSD system either... Which version of Debian & IW are you using? I had a problem with unicode symbols in an older version of IW in my sid system; I had to use the Experimental version for a while to fix it. |
Hi everyone, I ran into a problem the other day. I have a Raspberry Pi v2 running Debian Jessie (see http://sjoerd.luon.net/posts/2015/02/de ... e-on-rpi2/). I have disabled the root access via SSH, and then locked the root account (after having installed sudo and added me in the sudoers, of course). But sudo suddenly broke after an apt-get upgrade, and now I am unable to fix. Here is the trace: Code: Select alljm@jessie-rpi:~$ sudo apt-get upgrade 21:14:29 Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done The following packages will be upgraded: apt apt-transport-https apt-utils base-files cron dbus libapt-inst1.5 libapt-pkg4.12 libc-bin libc6 libdbus-1-3 libdns-export100 libexpat1 libgnutls-deb0-28 libgnutls-openssl27 libicu52 libirs-export91 libisc-export95 libisccfg-export90 libssl1.0.0 libsystemd0 libudev1 locales multiarch-support openssl rsyslog systemd systemd-sysv tzdata udev 30 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 25.8 MB of archives. After this operation, 923 kB disk space will be freed. Do you want to continue? [Y/n] y Get:1 http://ftp.debian.org/debian/ jessie/main base-files armhf 8+deb8u2 [69.5 kB] Get:2 http://ftp.debian.org/debian/ jessie/main libc-bin armhf 2.19-18+deb8u1 [1,161 kB] Get:3 http://ftp.debian.org/debian/ jessie/main libc6 armhf 2.19-18+deb8u1 [3,955 kB] Get:4 http://ftp.debian.org/debian/ jessie/main libapt-pkg4.12 armhf 1.0.9.8.1 [733 kB] Get:5 http://ftp.debian.org/debian/ jessie/main apt armhf 1.0.9.8.1 [1,077 kB] Get:6 http://ftp.debian.org/debian/ jessie/main libudev1 armhf 215-17+deb8u2 [51.0 kB] Get:7 http://ftp.debian.org/debian/ jessie/main udev armhf 215-17+deb8u2 [853 kB] Get:8 http://ftp.debian.org/debian/ jessie/main libsystemd0 armhf 215-17+deb8u2 [80.8 kB] Get:9 http://ftp.debian.org/debian/ jessie/main systemd armhf 215-17+deb8u2 [2,313 kB] Get:10 http://ftp.debian.org/debian/ jessie/main systemd-sysv armhf 215-17+deb8u2 [34.5 kB] Get:11 http://ftp.debian.org/debian/ jessie/main cron armhf 3.0pl1-127+deb8u1 [91.2 kB] Get:12 http://ftp.debian.org/debian/ jessie/main libapt-inst1.5 armhf 1.0.9.8.1 [166 kB] Get:13 http://ftp.debian.org/debian/ jessie/main libssl1.0.0 armhf 1.0.1k-3+deb8u1 [860 kB] Get:14 http://ftp.debian.org/debian/ jessie/main libgnutls-openssl27 armhf 3.3.8-6+deb8u3 [140 kB] Get:15 http://ftp.debian.org/debian/ jessie/main libgnutls-deb0-28 armhf 3.3.8-6+deb8u3 [634 kB] Get:16 http://ftp.debian.org/debian/ jessie/main libdbus-1-3 armhf 1.8.20-0+deb8u1 [150 kB] Get:17 http://ftp.debian.org/debian/ jessie/main libisc-export95 armhf 1:9.9.5.dfsg-9+deb8u2 [127 kB] Get:18 http://ftp.debian.org/debian/ jessie/main libdns-export100 armhf 1:9.9.5.dfsg-9+deb8u2 [414 kB] Get:19 http://ftp.debian.org/debian/ jessie/main libexpat1 armhf 2.1.0-6+deb8u1 [61.5 kB] Get:20 http://ftp.debian.org/debian/ jessie/main libicu52 armhf 52.1-8+deb8u2 [6,588 kB] Get:21 http://ftp.debian.org/debian/ jessie/main libisccfg-export90 armhf 1:9.9.5.dfsg-9+deb8u2 [37.2 kB] Get:22 http://ftp.debian.org/debian/ jessie/main libirs-export91 armhf 1:9.9.5.dfsg-9+deb8u2 [35.8 kB] Get:23 http://ftp.debian.org/debian/ jessie/main multiarch-support armhf 2.19-18+deb8u1 [179 kB] Get:24 http://ftp.debian.org/debian/ jessie/main tzdata all 2015f-0+deb8u1 [191 kB] Get:25 http://ftp.debian.org/debian/ jessie/main apt-utils armhf 1.0.9.8.1 [356 kB] Get:26 http://ftp.debian.org/debian/ jessie/main rsyslog armhf 8.4.2-1+deb8u1 [505 kB] Get:27 http://ftp.debian.org/debian/ jessie/main dbus armhf 1.8.20-0+deb8u1 [252 kB] Get:28 http://ftp.debian.org/debian/ jessie/main locales all 2.19-18+deb8u1 [3,908 kB] Get:29 http://ftp.debian.org/debian/ jessie/main apt-transport-https armhf 1.0.9.8.1 [135 kB] Get:30 http://ftp.debian.org/debian/ jessie/main openssl armhf 1.0.1k-3+deb8u1 [673 kB] Fetched 25.8 MB in 34s (744 kB/s) Preconfiguring packages ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../base-files_8+deb8u2_armhf.deb ... Unpacking base-files (8+deb8u2) over (8+deb8u1) ... Processing triggers for man-db (2.7.0.2-5) ... Setting up base-files (8+deb8u2) ... Installing new version of config file /etc/debian_version ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../libc-bin_2.19-18+deb8u1_armhf.deb ... Unpacking libc-bin (2.19-18+deb8u1) over (2.19-18) ... Processing triggers for man-db (2.7.0.2-5) ... Setting up libc-bin (2.19-18+deb8u1) ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../libc6_2.19-18+deb8u1_armhf.deb ... Unpacking libc6:armhf (2.19-18+deb8u1) over (2.19-18) ... Setting up libc6:armhf (2.19-18+deb8u1) ... Processing triggers for libc-bin (2.19-18+deb8u1) ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../libapt-pkg4.12_1.0.9.8.1_armhf.deb ... Unpacking libapt-pkg4.12:armhf (1.0.9.8.1) over (1.0.9.8) ... Setting up libapt-pkg4.12:armhf (1.0.9.8.1) ... Processing triggers for libc-bin (2.19-18+deb8u1) ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../apt_1.0.9.8.1_armhf.deb ... Unpacking apt (1.0.9.8.1) over (1.0.9.8) ... Processing triggers for man-db (2.7.0.2-5) ... Setting up apt (1.0.9.8.1) ... Processing triggers for libc-bin (2.19-18+deb8u1) ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../libudev1_215-17+deb8u2_armhf.deb ... Unpacking libudev1:armhf (215-17+deb8u2) over (215-17+deb8u1) ... Setting up libudev1:armhf (215-17+deb8u2) ... Processing triggers for libc-bin (2.19-18+deb8u1) ... (Reading database ... 19958 files and directories currently installed.) Preparing to unpack .../udev_215-17+deb8u2_armhf.deb ... Unpacking udev (215-17+deb8u2) over (215-17+deb8u1) ... Processing triggers for man-db (2.7.0.2-5) ... Processing triggers for systemd (215-17+deb8u1) ... Setting up udev (215-17+deb8u2) ... update-initramfs: deferring update (trigger activated) Processing triggers for initramfs-tools (0.120) ... update-initramfs: Generating /boot/initrd.img-3.18.0-trunk-rpi2 flash-kernel: installing version 3.18.0-trunk-rpi2 dpkg: unrecoverable fatal error, aborting: files list file for package `ntp' contains empty filename E: Sub-process /usr/bin/dpkg returned an error code (2) jm@jessie-rpi:~$ sudo apt-get install mail 21:21:27 sudo: error in /etc/sudo.conf, line 0 while loading plugin `sudoers_policy' sudo: unable to load /usr/lib/sudo/sudoers.so: (null) sudo: fatal error, unable to load plugins jm@jessie-rpi:~$ sudo apt-get upgrade 21:25:26 sudo: error in /etc/sudo.conf, line 0 while loading plugin `sudoers_policy' sudo: unable to load /usr/lib/sudo/sudoers.so: (null) sudo: fatal error, unable to load plugins jm@jessie-rpi:~$ sudo echo true 21:26:52 sudo: error in /etc/sudo.conf, line 0 while loading plugin `sudoers_policy' sudo: unable to load /usr/lib/sudo/sudoers.so: (null) sudo: fatal error, unable to load plugins jm@jessie-rpi:~$ ll /usr/lib/sudo 21:26:55 total 296K -rw-r--r-- 1 root root 9.3K Mar 12 2015 group_file.so -rwxr-xr-x 1 root root 22K Mar 12 2015 sesh -rw-r--r-- 1 root root 238K Mar 12 2015 sudoers.so -rw-r--r-- 1 root root 5.2K Mar 12 2015 sudo_noexec.so -rw-r--r-- 1 root root 9.3K Mar 12 2015 system_group.so jm@jessie-rpi:~$ sudo su 21:28:10 sudo: error in /etc/sudo.conf, line 0 while loading plugin `sudoers_policy' sudo: unable to load /usr/lib/sudo/sudoers.so: (null) sudo: fatal error, unable to load plugins jm@jessie-rpi:~$ su 21:32:36 Password: su: Authentication failure jm@jessie-rpi:~$ su 21:33:28 Password: su: Authentication failure jm@jessie-rpi:~$ Question: how can I somehow enable the root account, or fix sudo without root privileges ? It appears I have not access to the recovery mode (Raspberry Pi, holding SHIFT or pressing ESC at startup has no effects). As the system is on a SD card, I still have access to the file system and can do modifications from another computer, but I don't know how to fix it that way. I noticed that /etc/sudo.conf is not here. Maybe I can recreate it ? | How have you "locked the root account"? If with 'passwd -l', you can unlock it again by editing /etc/shadow and removing the '!' at the start of the password field. See shadow and passwd manpages for details. A more interesting question is: Why would you do this in the first place? Disabling root logins over SSH is a good idea, but I can't think of a case for disabling local root logins - it's asking to get yourself locked out, as you appear to have discovered. |
The VirtualBox website has a deb file. This is nice except the repo listed does not seem to be valid. apt-get update gives the no pubkey error. Before this I added jessie backports hoping that a version newer than 4.3 would be available there. No such luck. This is very frustrating. I would like to watch some DVD's. Though the VLC version available through Synaptic is antiquated, according to the website. Also the site says to get libdvdcss and does not tell you where. I got this package from packages.org for my old version of VLC and that don't work. Also the man page for vi (or vim) does not list all the commands. What kind of bullshit is that? I wanted to add a line to the end of my sources list. Had to look online. Found the O command which adds a line above the cursor. What if I didn't have internet and I wanted to edit a file with vi? Well then I would be SOL because the man page is incomplete. I am sorry for listing multiple problems in one post. This just underlines how problematic it has been to get my computer to function. Also for some reason it seems the users at this forum submit one thread at a time. I just thought; Why break the trend? I really had better luck with Wheezy. It might just be time to return to Ubuntu, which was the first distribution I had. | apt-get update gives the no pubkey error. Have you added the keys for that non-debian repo? I would like to watch some DVD's.Seen the Wiki? |
hi, i try to use inn2 news server When i want to syncronise, i got this error: Code: Select allactsync -o x -v 2 -p 0 -i /etc/news/actsync.ign /etc/news/active.txt actsync: cannot connect to server: Connection refused i don't understand, and don't see something helpful in my news/logs | ibasaw wrote:i don't understand Find the package documentation for inn2. You can also: man inn2 man actsync If you’re using Jessie, then https://packages.debian.org/jessie/inn2 says you have version 2.5.4-3. The INN homepage https://www.eyrie.org/~eagle/software/inn/ provides documentation; for 2.5 it is here: https://www.eyrie.org/~eagle/software/inn/ There is a page on actsync there. In duckduckgo.com, you could enter Code: Select allactsync site:eyrie.org |
Is there a good program for capturing traffic through a serial port? I'm trying to write a gdb-stub, and it seems that gdb is not happy with the response from a processor board. I gust don't know what exactly gdn sends to it, and what the response looks like. The message the gdn complains about is 'qSupported', but I don't know what features gdb asks about, and what's wrong with my response. I've tried jpnevulator and snooper (from the Debian repo), but I haven't been able to do anything with them. Code: Select all$ snooper -b115200 /dev/ttyUSB0 /dev/ttyS0 lock open: No such file or directory device /dev/ttyUSB0 in use specified $ Is there moserial available? It's for Gnome, and I think I might have Gnome desktop (how can I find out?). Tried also: socat /dev/ttyUSB0,echo=0,raw,b115200,parenb=0,cs8,cstopb=1 pty,echo=0,raw,link=/dev/gdbser,b115200,parenb=0,cs8,cstopb=1 then tried to 'target remote /dev/gdbser' and '/target remote /dev/ttyUSB0', but nothing appeared on the screen. Best this far (and that's not much) has been: jpnevulator --ascii --timing-print --tty /dev/ttyS0 --tty /dev/ttyUSB0 --read Code: Select all(gdb) show serial baud: Baud rate for remote serial I/O is 115200. (gdb) target remote /dev/ttyUSB0 Remote debugging using /dev/ttyUSB0 Ignoring packet error, continuing... warning: unrecognized item "timeout" in "qSupported" response Ignoring packet error, continuing... Ignoring packet error, continuing... Bogus trace status reply from target: timeout (gdb) Code: Select all jpnevulator --ascii --timing-print --tty /dev/ttyS0 --tty /dev/ttyUSB0 --read 2015-09-23 19:57:18.033149: /dev/ttyUSB0 00 . 2015-09-23 19:57:25.029246: /dev/ttyUSB0 00 . 2015-09-23 19:57:30.477706: /dev/ttyUSB0 24 4F 67 64 62 20 73 74 75 62 20 73 74 61 72 74 $Ogdb stub start 65 64 0A 23 37 62 ed.#7b 2015-09-23 19:58:08.008919: /dev/ttyUSB0 24 2D $- 2015-09-23 19:58:11.009265: /dev/ttyUSB0 64 d Either my program or gdb talks gibberish, or the serial port monitoring isn't working. (It's my code that sent the message $Ogdb stub started.#7b ) | Hi turboscrew, I really have no idea how to do this, but to stimulate your thinking, a duckduckgo search quickly turned up this article: http://www.cyberciti.biz/faq/howto-moni ... -in-linux/ What permissions do these commands require? Are you sure of your syntax with jpnevulator (see manpage)? Have you tried pyserial or strace? DDG also found this: http://serverfault.com/questions/112957 ... t-on-linux |
I can't mount it, and also since apparently debian doesn't care about the nasty systemd but I had to deal with that but I digress. I cannot mount my itnernal drive, and even memory cards are listed as "permission denied" even though I am part of the disks group. I know that before systemd I could just edit a udisks config file but I cannot find out where it'd even be and searching doesn't help me at all. I've included my /etc/fstab. Code: Select all# /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sda1 during installation UUID=d8ce8219-3bfd-4777-aeba-b287e2067f50 / ext4 noatime,errors=remount-ro 0 1 # /home was on /dev/sda2 during installation UUID=60eb6f72-93cd-410a-b08d-3f9b8f2c0069 /home btrfs noatime 0 2 /dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0 tmpfs /tmp tmpfs defaults,noatime,size=3048M,mode=1777 0 0 tmpfs /var/tmp tmpfs defaults,relatime,size=512M,mode=1777 0 0 tmpfs /tmpdownload tmpfs defaults,noatime,size=8992M 0 0 tmpfs /home/macarthur/.adobe/Flash_Player/AssetCache tmpfs defaults,noatime,size=15M 0 0 tmpfs /home/macarthur/.macromedia tmpfs defaults,noatime,size=15M 0 0 tmpfs /home/macarthur/.cache/chromium tmpfs defaults,noatime,size=200M 0 0 tmpfs /home/macarthur/.cache/moonchild\040productions/pale\040moon/g8gnphpj.default/Cache tmpfs defaults,noatime,size=300M 0 0 I am part of the disks group, and am 90% sure that I edited the udisks file that says something about mount internal disk to allow active from allow_admin the only udev rules that i've changed was the one to change the mount point for external drives to /media/drive_label instead of /media/$username/drive_label basically I'm trying to automount the partition after clicking on it in the file manager. | What did you do before this behavior changed? I infer from your post that which you do not say, namely that you just upgraded to Jessie. I also infer that it is only specific partitions that are not mounting. (The system partition is mounted, right?) First, you might check with blkid to make sure your UUID strings are still correct. From Jessie’s release notes: The new default init system, systemd-sysv, has a stricter handling of failing "auto" mounts during boot compared to sysvinit. If it fails to mount an "auto" mount (without the "nofail" option), systemd will drop to an emergency shell rather than continuing the boot. We recommend that all removable or "optional" mount points (e.g. non-critical network drives) listed in /etc/fstab either have the "noauto" or the "nofail" option. https://www.debian.org/releases/stable/ ... s-incompat What error messages do you get if you execute a mount command using the fstab entries? You will probably find lots of forum threads on this topic. Via a search engine: Code: Select alljessie systemd mount partitions site:forums.debian.net |
I am trying to install Octave and QGis in Debian Stretch, however Octave requires libqscintilla2-12, whereas QGis requires libqscintilla2-12v5, both packages are not compatible and actually they seem the same package with a different version. That makes not possible at the moment to have official deb versions of QGis and Octave installed at the same time. Is someone feeling same situation, have you solved it somehow? | gcc5 transition ... Yes, some things will be uninstallable. If that's a problem, wait, or grab the parts from sid as and when they become available, or run stable. |
Hi Guys, Updating my Debian Gnome Testing box this morning with dist-upgrade and I get the following: - The following packages will be REMOVED: clementine easytag gimp gimp-gmic gimp-plugin-registry gnomad2 gnome gnome-media gnome-photos gstreamer0.10-plugins-good libasprintf0c2 libboost-date-time1.55.0 libclucene-contribs1 libclucene-core1 libcmis-0.4-4 libcmis-0.5-5 libebook-1.2-14 libebook-contacts-1.2-0 libedata-book-1.2-20 libfarstream-0.1-0 libflac++6 libgegl-0.2-0 libgltf-0.0-0 libilmbase6 libopencv-calib3d2.4 libopencv-contrib2.4 libopencv-core2.4 libopencv-features2d2.4 libopencv-flann2.4 libopencv-highgui2.4 libopencv-imgproc2.4 libopencv-legacy2.4 libopencv-ml2.4 libopencv-objdetect2.4 libopencv-video2.4 libopenexr6 liborcus-0.10-0 libphonenumber6 libpurple-bin libpurple0 libsidplay1 libtag-extras1 libtag1-vanilla libtag1c2a libtagc0 libvamp-hostsdk3 printer-driver-brlaser soundconverter telepathy-haze The following NEW packages will be installed: cpp-5 g++-5 gcc-5 gcc-5-multilib lib32asan2 lib32gcc-5-dev lib32mpx0 libasan2 libasprintf0v5 libboost-date-time1.58.0 libboost-iostreams1.58.0 libboost-system1.58.0 libcc1-0 libclucene-contribs1v5 libclucene-core1v5 libcmis-0.5-5v5 libcoverartcc1v5 libexiv2-14 libflac++6v5 libgcc-5-dev libgltf-0.0-0v5 libicu55 libilmbase6v5 libmpx0 libmusicbrainz5cc2v5 libopencv-calib3d2.4v5 libopencv-contrib2.4v5 libopencv-core2.4v5 libopencv-features2d2.4v5 libopencv-flann2.4v5 libopencv-highgui2.4v5 libopencv-imgproc2.4v5 libopencv-legacy2.4v5 libopencv-ml2.4v5 libopencv-objdetect2.4v5 libopencv-video2.4v5 libopenexr6v5 liborcus-0.10-0v5 libreoffice-gtk3 libsidplay1v5 libstdc++-5-dev libtag1v5-vanilla libvamp-hostsdk3v5 libx32asan2 libx32gcc-5-dev The following packages have been kept back: gparted libavcodec-ffmpeg56 libavcodec-ffmpeg56:i386 libavresample-ffmpeg2 libavresample-ffmpeg2:i386 libavutil-ffmpeg54 libavutil-ffmpeg54:i386 libpstoedit0c2a libswresample-ffmpeg1 libswresample-ffmpeg1:i386 pdfchain python-wxgtk3.0 The following packages will be upgraded: audacity audacity-data cdrdao cpp evolution-data-server evolution-data-server-common firebird2.5-server-common g++ gcc gcc-5-base gcc-5-base:i386 gcc-multilib gdisk gettext-base gnome-color-manager gstreamer0.10-plugins-ugly gstreamer1.0-plugins-bad gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly gthumb hoichess lib32atomic1 lib32cilkrts5 lib32gcc1 lib32gomp1 lib32itm1 lib32quadmath0 lib32stdc++6 lib32ubsan0 libasprintf-dev libatomic1 libcamel-1.2-52 libcdr-0.1-1 libchromaprint0 libcilkrts5 libcoverart1 libdee-1.0-4 libedataserver-1.2-20 libexempi3 libfbembed2.5 libgcc1 libgcc1:i386 libgexiv2-2 libgfortran3 libgomp1 libgomp1:i386 libgstreamer-plugins-bad1.0-0 libharfbuzz-icu0 libhunspell-1.3-0 libitm1 libjack-jackd2-0 libjack-jackd2-0:i386 liblsan0 libmagickcore-6.q16-2-extra libmspub-0.1-1 libmusicbrainz5-2 libobjc4 libofa0 libpsl0 libqca2 libqca2-plugins libqt4-dbus libqt4-dbus:i386 libqt4-declarative libqt4-designer libqt4-help libqt4-network libqt4-network:i386 libqt4-opengl libqt4-opengl:i386 libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-mysql libqt4-sql-sqlite libqt4-svg libqt4-test libqt4-xml libqt4-xml:i386 libqt4-xmlpatterns libqt4-xmlpatterns:i386 libqt5core5a libqt5webkit5 libqtcore4 libqtcore4:i386 libqtdbus4 libqtdbus4:i386 libqtgui4 libqtgui4:i386 libqtwebkit4 libqtwebkit4:i386 libquadmath0 libreoffice libreoffice-base libreoffice-base-core libreoffice-base-drivers libreoffice-calc libreoffice-common libreoffice-core libreoffice-draw libreoffice-evolution libreoffice-gnome libreoffice-gtk libreoffice-help-en-gb libreoffice-help-en-us libreoffice-impress libreoffice-l10n-en-gb libreoffice-math libreoffice-style-galaxy libreoffice-style-tango libreoffice-writer libstdc++6 libstdc++6:i386 libtsan0 libubsan0 libx32atomic1 libx32cilkrts5 libx32gcc1 libx32gomp1 libx32itm1 libx32quadmath0 libx32stdc++6 libx32ubsan0 python3-icu python3-uno qdbus uno-libs3 ure virtualbox virtualbox-dkms virtualbox-qt xbrlapi 132 upgraded, 45 newly installed, 49 to remove and 12 not upgraded. Obviously I don't want to remove the 49 listed packages and I know Testing has these little hiccups (par for the course with Testing ), so is it due to the upgrade to GCC 5 or is there some little dependency somewhere that is the spanner in the works? Cheers Ambleston | The GCC version 5 upgrade started in Testing today. https://lists.debian.org/debian-devel/2 ... 00148.html https://lists.debian.org/debian-release ... 00241.html You may want to wait a bit before trying a `dist-upgrade` |
I use debian 8 with gnome 3 , and my system is heavy . for example when I want close some app . it take long time . how I can check what is problem ? | http://forums.debian.net/viewtopic.php?f=20&t=116724 That is, this may be due to hardware, but if we don't know what it is... |
Hi there! I use scim to input Chinese in Libreoffice-writer. It worked on one of my computers until a couple of days ago. Normally to start scim I press Ctrl and the space bar at the same time. Then I use the input method Cangjie to input Chinese. Now when I do so in Libreoffice-writer "English/European" appears in the scim panel. The other choice is "English/Keyboard". The choice of either doesn't enable me to input Chinese. In all other software scim works as before. The computer runs Debian sid. On another computer that runs Debian sid too I don't have the same problem. I have version 5 of Libreoffice on both computers. How do I fix this problem? Thanks! | I more or less solved the problem. Let me write down what I did in case someone else might find it useful. I thought scim might be the cause of the problem. I replaced it by iBus, but the problem persisted. After installing libreoffice-gnome, libreoffice-gtk and libreoffice-gtk3, the problem is gone. I didn't find out which of the three packages or which combination of them did the trick. I didn't find out whether with the three packages installed I can input Chinese in Libreoffice-writer using scim. |
Hello all. I took the plunge and installed debian jessie 8.2.0. Cant for the life of me install vlc. Keep getting missing dependencies. I am interest in seeing a few sources.list files if you dont mind posting them. I prefer to solve this myself as how the heck else am I going to learn. Seems as if debian is a different animal from others who run ubuntu or mint which just installs it for you basically. Here is my sources.list file. If you care to make suggestions for me. I understand the # in front of a line but still would like to have a clean sources.list file. Having a blast with debian and i dont want to add repositories for other flavors. Want to keep debian clean. thanks all brad # deb cdrom:[Debian GNU/Linux 8.2.0 _Jessie_ - Official amd64 DVD Binary-1 20150906-11:13]/ jessie contrib main # deb cdrom:[Debian GNU/Linux 8.2.0 _Jessie_ - Official amd64 DVD Binary-1 20150906-11:13]/ jessie main contrib # deb cdrom:[Debian GNU/Linux 8.2.0 Update DVD 20150907: amd64 DVD 1]/ jessie contrib main non-free deb http://security.debian.org/ jessie/updates non-free contrib main deb-src http://security.debian.org/ jessie/updates main contrib non-free # jessie-updates, previously known as 'volatile' # A network mirror was not selected during install. The following entries # are provided as examples, but you should amend them as appropriate # for your mirror of choice. deb http://ftp.debian.org/debian/ jessie-updates non-free contrib main deb-src http://ftp.debian.org/debian/ jessie-updates main contrib non-free deb http://ftp.us.debian.org/debian jessie-backports main deb http://ftp.us.debian.org/debian dists jessie contrib deb http://ftp.us.debian.org/debian dists jessie main deb http://ftp.us.debian.org/debian dists jessie non-free deb ftp://ftp.deb-multimedia.org jessie main non-free deb ftp://ftp.deb-multimedia.org jessie-backports main | bradw wrote:Keep getting missing dependencies. Post the exact error messages (using code tags) please. bradw wrote:Code: Select alldeb http://ftp.us.debian.org/debian dists jessie contrib deb http://ftp.us.debian.org/debian dists jessie main deb http://ftp.us.debian.org/debian dists jessie non-free Those don't look right. For reference, there is an example sources.list on the Debian wiki: https://wiki.debian.org/SourcesList#Exa ... 2Jessie.22 |
As the Rescatux forum registration is currently disabled, I'm asking here... How to launch Rescatux from a hard disk drive - BIOS mode (DVD-reader is dead)? EDIT: I suppose through a similar procedure as for launching a debian install from hdd (re. here and here), hence: which kernel binary and ramdisk image to use? | That would require a functioning bootloader although a damaged one may allow you to select the ISO image to boot. However, you must have the greatest part of your bootloader working. |
Hi, I've been pulling my hair over this issue for weeks now: I'm using Debian Jessie on both my client pc and my homeserver. My network printer (HP Photosmart C4380) is connected to the server via USB and shared to the network with CUPS. Both systems are up to date and the printer drivers are installed on them too (hplip 3.14.6). The issue is: when I try to print on the server itself, it works. However, when I try the same thing from my client, nothing comes out and I get a "Filter failed" error. Now, that's when things get funnier: If I try to print from an Ubuntu 14.04 client, it works! I really don't get it. I'm posting the full debug log from the server here (the log is empty on the Debian client) in hope that someone more competent than me can help with this issue. Is it a bug, a misconfiguration? It seems to be a rare issue however because I haven't found much information about it on the web. Hopefully someone can help, thank you. | I solved this by copying /etc/cups/printers.conf from the Ubuntu client to my Debian client. Restarted CUPS and it works now. |
I am thinking about upgrading, again, from Wheezy to Jessie. When I had Jessie installed, prior to a crash, I noticed that some of the Gnome games in Jessie are not as esthetically pleasing as they were in Wheezy. Also, some of the games (eg. mines) were slower and seemed to use a lot more CPU resources. So my questions are: 1. If I pin those programs that I want to keep will that also pin the dependencies for those programs? 2. If those dependencies are pinned, how might that impact other programs, in Jessie, that might depend on later packages? 3.If I don't pin those programs that I want to keep is it possible to install those programs from Wheezy after I upgrade to Jessie, without causing issues with Jessie? Hopefully my questions are clear enough that I can get some good answers. Having learned my lesson the hard way I don't want to "break the system". I would rather stick with Wheezy than to upgrade and not be happy. | If you prefer the software in wheezy then just stick to that version. It has full support from the Security team until February 2016 (with support from the LTS team until May 2018) so there's no need to switch just yet. |
Well, my system just crashed again. Appears to be Disk IO problems. Don't know if it is the hard drive ( SMART test showed nothing wrong) or if it is a problem with the motherboard. Can't get back into the system to check things out. The MOBO is about ten years old so there may be problems. The HDD is only about a year old, but that does not preclude problems (it's a 500GB WD Velociraptor ) . Just booted up my Knoppix live CD and looked at my linux drive. Everything looks okay. Checked it with Gparted and the partitions are still okay. Not sure where to go next. I suspect that either something is wrong with the Wheezy installation (although I previously had the same issue with Jessie) or if there is a problem with the SATA controller. I am beginning to suspect the later. Don't know what will happen if I start swapping SATA ports. Don't want to mess up Windows as it's the only thing working right now (besides the Knoppix CD). Is there anything I can pull off the linux HDD, when I am running Knoppix, that may be of help ? Are there any analytics that I can do from Knoppix? Going to swap the SATA ports for my Linux drive (port 2) and the CDROM drive (port 4). Maybe port 2 is going south. Maybe I need to bite the bullet and build a new system. | dasein wrote:Just curious... do the sysreq keys work under jessie? /me ... logs back in ... yes. Dunno if they all worked, but it rebooted |
I just saw this message in the syslog and wondered if it could have anything to do with my previous problems with LXDE crashing: Code: Select allSep 6 08:03:34 MyComputer kernel: [ 1003.788502] colord-sane[3381]: segfault at 21 ip b4de95ba sp b5609fb8 error 6 in libdbus-1.so.3.7.2[b4dbe000+4a000] I have read a number of bug reports regarding this issue and it appears to go back about two years. It was supposedly fixed but that does not appear to be the case unless there is something peculiar with my Wheezy 7.8 installation. I just found this on a Ubuntu bug report. It is related to a colord-sane but not necessarily exactly the same as what I am experiencing. This is a libsane bug, not a colord bug. If you want to to work around it, change /etc/colord.conf to have UseSANE=false May give the suggestion a try and see if the problem goes away. | Okay. I changed colord.conf 'UseSane' as follows. Original was Code: Select all[colord] #comments # UseSANE=true # # new Code: Select all[colord] #comments # UseSANE=false # # Hopefully this doesn't mess up something else, but the segfault no longer appears. And if I understand the colord.conf file this is only used to 'poll' for USB scanners and such. However, some users have reported problems (ie 100% CPU usage) when inserting or removing other USB devices. I will monitor this for awhile and if I don't have problems I will mark this is solved. |
Jessie 8.1 Desktop LXDE Yesterday (Aug.29,2015) I was updating my backup of the home directory to a USB memory device when the desktop icons suddenly disappeared. Immediately thereafter the 'logout' button changed to a red ball with a white horizontal line. I noticed that the CPU monitor was showing 100% CPU usage. I was unable to log out, could not open a lxterminal. I opened tty1 so I could shut down or halt the system but could not log on. Got a huge number of messages, don't have any details that I can give, but they appeared to be mostly related to I/O issues. I exited tty1 and the desktop was still totally unusable and the CPU was still running 100%. Being at a TOTAL loss, I did what was probably a DUMB thing and pushed the 'reset' button. Well, as one can probably imagine the system failed to boot back up. I booted a live CD (Knoppix) and used Gparted to look at the drive and what should have been ext4 partitions were unrecognized, so I reformatted the drive and then re-installed Wheezy (I had the install disk). Fortunately, I still had most of my passwords on a WInXP drive. So, does anybody have any ideas as to what may have happened to cause LXDE to suddenly start shutting down? What do I do if it happens again? Don't like hitting that reset button when the system is running. Would the system eventually have figured out that something was wrong and then shutdown gracefully? Are there issues with LXDE and should I NOT use LXDE (I really don't like Gnome)? | In my experience, I've always found LXDE to be very buggy, and I doubt LXQt will be much better. If you want something stable but still simple like LXDE, you should have a look into Xfce or MATE. I've always found them to be very stable, but simple. Any desktop environment is better than GNOME (except for KDE Plasma; avoid using that whenever possible). |
Dear users I never turn off my laptop so I never noticed this, Debian never ask me my user password ! I reboot my pc several time to be sure. However, If I lock the pc or hibernate, then Debian ask me my user password. Do you have some suggestion to solve this important issue ? Thanks you | Have you set it up to auto-login? |
My vbox was just upgraded to 4.3.18_Debianr96516. It was 4.3.10 before. Now all my virtual machines abort when started. I tried start from cli, (vboxmanage vm-name) but the same thing happened. The vm black window comes up, booting starts, and then it winks out. There were no messages in the terminal. I had this problem once before, a couple of months ago, and downgraded my vbox to 4.3.10, and all the VMs worked again. Noodling around for an answer I saw suggestions that vboxdrv kernel module was not correct. I tried reinstalling virtualbox-dkms, as well as dpkg-reconfigure virtualbox-dkms, followed by modprobe vboxdrv (all done as sudo of course). But nothing has helped. I see on some of the mailing lists that this is some kind of bug, but the posts are severely technical and I don't see anything I recognize as a workaround. Does anyone here have a suggestion for me? It's be nice to get current and not go back to 4.3.10 | It occurred to me to check the output of lsmod, but it says vboxdrv is loaded. Code: Select all~$ lsmod | grep vboxdrv vboxdrv 340067 3 vboxnetadp,vboxnetflt,vboxpci I don't know enough about it to know if that shows it's loaded correctly, but it looks okay to me. So presumably vboxdrv is NOT the problem? ?? Has anybody else had a problem with virtual machines aborting or crashing? |
i use Debian GNU/Linux 8 (jessie) 64-bit stable OS with Gnome 3.14.1 after apt-get -f install i receive these: Code: Select allThe following packages were automatically installed and are no longer required: aisleriot alacarte argyll argyll-ref bijiben cheese dleyna-renderer fairymax file-roller finger five-or-more fonts-texgyre four-in-a-row gedit gedit-common gedit-plugins gir1.2-champlain-0.12 gir1.2-gdata-0.0 gir1.2-geocodeglib-1.0 gir1.2-git2-glib-1.0 gir1.2-goa-1.0 gir1.2-grilo-0.2 gir1.2-gtkchamplain-0.12 gir1.2-gucharmap-2.90 gir1.2-mediaart-1.0 gir1.2-rb-3.0 gir1.2-rest-0.7 gir1.2-secret-1 gir1.2-tracker-1.0 gir1.2-vte-2.91 gir1.2-zeitgeist-2.0 gir1.2-zpj-0.0 gnome-chess gnome-clocks gnome-color-manager gnome-documents gnome-getting-started-docs gnome-klotski gnome-logs gnome-mahjongg gnome-maps gnome-media gnome-mines gnome-music gnome-nettool gnome-nibbles gnome-photos gnome-robots gnome-shell-extension-weather gnome-sound-recorder gnome-sudoku gnome-tetravex gnome-video-effects gnustep-base-common gnustep-base-runtime gnustep-common goobox gstreamer0.10-pulseaudio guile-2.0-libs hamster-applet hitori hoichess iagno iputils-tracepath libboost-filesystem1.55.0 libcoverart0 libdiscid0 libenet7 libexiv2-13 libgit2-21 libgit2-glib-1.0-0 libgloox12 libgnustep-base1.24 libgpod-common libgpod4 libjansson4 liblinear1 libminiupnpc10 libnatpmp1 libnvtt2 libobjc4 libqqwing2 librhythmbox-core8 libsgutils2-2 libsofia-sip-ua-glib3 libsofia-sip-ua0 libwnck-common libwnck22 lightsoff media-player-info minissdpd nautilus-sendto ndiff nmap polari python-wnck python3-dbus python3-gi-cairo python3-mako python3-markupsafe rhythmbox rhythmbox-data rhythmbox-plugin-cdrecorder rhythmbox-plugins seahorse simple-scan swell-foop tali telepathy-rakia tex-common transmission-common transmission-gtk unar unoconv xboard xdg-user-dirs-gtk Use 'apt-get autoremove' to remove them. so i read these post: http://unix.stackexchange.com/questions ... tall-gnome and tried to manually unmark in synaptic some files, after what they disappear from the not needed packages list, in search of more fast way i Copy past all files after aptitude unmarkauto and received following: Code: Select all# aptitude unmarkauto argyll argyll-ref bijiben cheese dleyna-renderer fairymax Following packages will be deleted: argyll{u} argyll-ref{u} bijiben{u} cheese{u} dleyna-renderer{u} fairymax{u} file-roller{u} finger{u} five-or-more{u} fonts-texgyre{u} four-in-a-row{u} gedit{u} gedit-common{u} gedit-plugins{u} gir1.2-champlain-0.12{u} gir1.2-gdata-0.0{u} gir1.2-geocodeglib-1.0{u} gir1.2-git2-glib-1.0{u} gir1.2-goa-1.0{u} gir1.2-grilo-0.2{u} gir1.2-gtkchamplain-0.12{u} gir1.2-gucharmap-2.90{u} gir1.2-mediaart-1.0{u} gir1.2-rb-3.0{u} gir1.2-rest-0.7{u} gir1.2-secret-1{u} gir1.2-tracker-1.0{u} gir1.2-vte-2.91{u} gir1.2-zeitgeist-2.0{u} gir1.2-zpj-0.0{u} gnome-chess{u} gnome-clocks{u} gnome-color-manager{u} gnome-documents{u} gnome-getting-started-docs{u} gnome-klotski{u} gnome-logs{u} gnome-mahjongg{u} gnome-maps{u} gnome-media{u} gnome-mines{u} gnome-music{u} gnome-nettool{u} gnome-nibbles{u} gnome-photos{u} gnome-robots{u} gnome-shell-extension-weather{u} gnome-sound-recorder{u} gnome-sudoku{u} gnome-tetravex{u} gnome-video-effects{u} gnustep-base-common{u} gnustep-base-runtime{u} gnustep-common{u} goobox{u} gstreamer0.10-pulseaudio{u} hamster-applet{u} hitori{u} hoichess{u} iagno{u} iputils-tracepath{u} libboost-filesystem1.55.0{u} libcoverart0{u} libdiscid0{u} libenet7{u} libexiv2-13{u} libgit2-21{u} libgit2-glib-1.0-0{u} libgloox12{u} libgnustep-base1.24{u} libgpod-common{u} libgpod4{u} libjansson4{u} liblinear1{u} libminiupnpc10{u} libnatpmp1{u} libnvtt2{u} libobjc4{u} libqqwing2{u} librhythmbox-core8{u} libsgutils2-2{u} libsofia-sip-ua-glib3{u} libsofia-sip-ua0{u} libwnck-common{u} libwnck22{u} lightsoff{u} media-player-info{u} minissdpd{u} nautilus-sendto{u} ndiff{u} nmap{u} polari{u} python-wnck{u} python3-dbus{u} python3-gi-cairo{u} python3-mako{u} python3-markupsafe{u} rhythmbox{u} rhythmbox-data{u} rhythmbox-plugin-cdrecorder{u} rhythmbox-plugins{u} seahorse{u} simple-scan{u} swell-foop{u} tali{u} telepathy-rakia{u} tex-common{u} transmission-common{u} transmission-gtk{u} unar{u} unoconv{u} xboard{u} xdg-user-dirs-gtk{u} 0 pachete înnoite, 0 nou instalate, 113 to delete și 0 neînnoite. Este nevoie de 0 B de arhive. După despachetare 499 MB vor fi eliberați. Vreți să continuați? [Y/n/?] so, is there another way then manually unselect all these files in synaptic? or maybe another more, open source way? | Probably just reinstall the gnome metapackage that you removed. |
On Debian Jessie I followed these instructions: https://wiki.debian.org/Steam and I get this: The following packages have unmet dependencies: libexpat1 : Breaks: libexpat1:i386 (!= 2.1.0-6+deb8u1) but 2.1.0-6+b3 is to be installed. libexpat1:i386 : Breaks: libexpat1 (!= 2.1.0-6+b3) but 2.1.0-6+deb8u1 is installed. The following actions will resolve these dependencies: The following packages have unmet dependencies: libexpat1 : Breaks: libexpat1:i386 (!= 2.1.0-6+deb8u1) but 2.1.0-6+b3 is to be installed. libexpat1:i386 : Breaks: libexpat1 (!= 2.1.0-6+b3) but 2.1.0-6+deb8u1 is installed. The following actions will resolve these dependencies: Keep the following packages at their current version: 1) libexpat1:i386 [Not Installed] 2) libgl1-mesa-dri:i386 [Not Installed] 3) libgl1-mesa-glx:i386 [Not Installed] 4) steam:i386 [Not Installed] Leave the following dependencies unresolved: 5) libgl1-mesa-glx:i386 recommends libgl1-mesa-dri:i386 (>= 7.2) I am afraid to break my Nvidia drivers. What should I do? | Apparently mirrors.kernel.org is missing something. I switched to the default Debian repos and everything is working fine now. |
Hey!! I just read about powernap here but don't know how to install it.. Download and untar it with Code: Select allaxel https://launchpad.net/powernap/trunk/2.20/+download/powernap_2.20.orig.tar.gz && tar -xvf powernap_2.20.orig.tar.gz was simple. Code: Select all/powernap-2.20 |-- /actions | `-- .. |-- /bin | `-- .. |-- /man | `-- .. |-- /powernap | `-- .. |-- /powerwake | `-- .. |-- /sbin | `-- .. |-- action |-- ChangeLog |-- config |-- config_migrate.py |-- DESIGN |-- powernap.spec |-- powernap-ethtool |-- powerwake_completion |-- powerwake.conf Source - powernap in Launchpad | That's only source code for the program, not a program that will run. Good for you for not adding the PPA, though. You can turn it into a deb package file containing the program by following this guide: https://wiki.debian.org/CreatePackageFromPPA That's the general case, but some packages may need some tweaking to be compatible with Debian. deb-src http://ppa.launchpad.net/powernap/ppa/ubuntu YOUR_UBUNTU_VERSION_HERE main |
Hi all, Is there a way to find if a package is a dependancy of some other package/s that you have installed it. For instance, let's say there is a library called libkolabxml1 Now if I just install it and ask :- Code: Select all$$ aptitude why libkolabxml1 Unable to find a reason to install libkolabxml1. But I remember it being useful/needed somewhere. Any ideas how do I find about that ? | If aptitude can't find anything, it is maybe something which you have installed apart from the packagemanager (in /opt or /usr/local)? |
Hi all, Who or which package is responsible for window decorations in mate, as have no window decorations in mate. | I am not sure I understand what you mean by " window recordations " I realize maybe it is a "language" problem, and the translator if you use one, did you mean "decorations" ? Or backgrounds, themes, etc, that sort of thing ? You want to look for "system" on the panel , I have mine up in the upper left corner, then "preferences" then you should see a "about me", below that "appearance", select "appearance" , there are various options,for themes, and backgrounds, etc. If you need a screen shot, maybe later I can make one. |
Running the command Code: Select all/usr/bin/env python will start the Python 2.7 interpreter. Would it harm my system if I changed things so that /usr/bin/env python ran Python 3.4 instead? | SenorSalad wrote:Would it harm my system if I changed things so that /usr/bin/env python ran Python 3.4 instead? Making system changes, yes. don't change the default python version as all the system was tested with python2.x. use instead Code: Select all/usr/bin/env python3 |
i use Debian GNU/Linux 8 (jessie) 64-bit stable OS with Gnome 3.14.1 after installing some updates on switch off PC, every time i log in i receive the message „software updates installed” in center down part of desktop. http://i.imgur.com/ruUU1L8.png | http://forums.debian.net/viewtopic.php?p=586530#p586530 |
Hello there, I am currently using Debian 8.1 64bit with openbox as a WM. I have multi arch enabled. I remember also having this problem with Debian 7 I use nvidia graphics drivers over the nouveau as I would like the hardware acceleration. I have had this problem with two different "gaming" mice. But the mouse I am currently using is a Corsair M65 Gaming Mouse. Code: Select all$ egrep "Name|Handlers" /proc/bus/input/devices | egrep -B1 'Handlers.*mouse' N: Name="Corsair Corsair M65 Gaming Mouse" H: Handlers=mouse0 event16 The matter of hand is about once a week my mouse tends to misbehave. I can move the mouse around but I cannot click on any windows or select any options by clicking. I cannot even right click on the desktop! I have tried starting X in another tty and the issue tends to persist shortly after starting X. The weird part is other days of the week the mouse works completely fine. Having this problem in the first place, I have a snoop around and I learnt that I needed to create a config file for the mouse. I have created a file in: /etc/X11/xorg.conf.d named 50-vmmouse.conf with the contents of: Code: Select all# Corsair Mouse Section "InputClass" Identifier "Mouse Remap" MatchProduct "Corsair Corsair M65 Gaming Mouse" MatchDevicePath "/dev/input/event*" Option "ButtonMapping" "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24" EndSection # Sensitivity Section "InputClass" Identifier "My Mouse" MatchIsPointer "yes" Option "AccelerationNumerator" "1" Option "AccelerationDenominator" "1" Option "AccelerationThreshold" "0" EndSection I have also tried putting the same data into an xorg.conf file, but alas the problem still exists. Just to note, I have not tried using a basic mouse for a week, so I cannot pass any data on that. But I prefer the issue to be resolved with the mouse I enjoy using. This is really frustrating as it stops me from using my system properly, the only solution tends to be to restart the machine and prayer. It would be nice for my mouse to work 100% of the time knowing it'll work. Please ask any questions and I will try to answer to the best of my ability. TLDR: Mouse misbehaves about once a week, tried different config files but no avail. | Intermittent errors are usually hardware related. Your OP doesn't say, so I have to ask: have you tried a different USB port? Are you using a hub? (If so, externally powered, or internal?) What happens if you unplug/replug the mouse? It'd be particularly interesting to see what dmesg has to say about a replug. |
Would someone enlighten me wrt "no flash youtube video"? OS is debian wheezy with iceweasel 31.80. I have completely removed adobe flash (I think). I have installed the html5 video everywhere addon, and have allowed youtube to set cookies. However, when I go to youtube and attempt to play a vid, noscript prompts me to allow googlevideo.com scripting. I am somewhat reluctant to use any google services, and am puzzled that youtube, which proclaims html5 as default (now), would need the googlevideo service? Note that I have removed flash because of its past insecurities. I guess the real question: "Does youtube (or iceweasel) really support html5? Regards, Bob | robert-e wrote:Does youtube (or iceweasel) really support html5? It does on my sid system -- I just have to "allow youtube.com" in noscript and it all works fine. I even get 1080p if I set media.mediasource.enabled to "true" in about:config |
Hello, I have upgraded my debian server on april when Jessie came up, but I *forgot* to reboot at this time. As a new kernel* was released this week as a security update, and since my server installed it (via unattended-upgrade on security packages), I rebooted it last night. It never came back online. I have access to a rescue boot (Ubuntu 12.04 LTS), and tried to analyse the failure (by mounting /sys /dev /proc and /boot and chrooting), but without luck so far. As it's a dedicated server, I don't have access to the console. I'm trying to see with the assistance team, but I don't have high hopes. What I know : No log in var/log since the failed reboot. I don't know how to have/find others logs. Previous kernel was 3.2.0-4-amd64, new is 3.16.0-4-amd64 What I tried without luck) : Change the booting kernel, via update-grub. Tried 3.2, 3.2 with sysvinit and 3.16 rescue mode I think. I should have done it right, but without console it's hard to tell. apt-get update/apt-get upgrade/apt-get dist-upgrade adding nomodeset to kernel load in grub What I haven't tried : update-initramfs, I don't really know why it would block the boot I'm a little lost, and open to every suggestions. *linux-image-3.16.0-4-amd64:amd64 3.16.7-ckt11-1+deb8u2 | Have you tried re-installing GRUB? What is the content of /boot/grub/grub.cfg and the output of: Code: Select all# blkid When you say that "it never came back online", what exactly do you mean? How far into the booting process does it get? |
such people I am new to this forum, I 'm using ubuntu since 2003, but now I decant, because many responses from people try Debian , then I 'm testing on an old machine ( Compaq Proliant 1600 300 mrz,1323 mb thsi ram and 3 x 9,1gb scsi disk in RAID 5) the first thing that happened to me It was that both debian, as "modern " not see your CD ROM drive. then opt for an older debian, debian 6.06, the installation was successful , but when you restart pum , debian jump picture errors link image https://drive.google.com/file/d/0B1tusE ... sp=sharing ideas? my machine forgot thank you very much | djleoli wrote:such people I am new to this forum, I 'm using ubuntu since 2003, but now I decant, because many responses from people try Debian , then I 'm testing on an old machine ( Compaq Proliant 1600 300 mrz,1323 mb thsi ram and 3 x 9,1gb scsi disk in RAID 5) the first thing that happened to me It was that both debian, as "modern " not see your CD ROM drive. What iso file did you use to install debian? Stable = jessie = version 8.1? i386? Compaq Proliant 1600 is very old. According to http://h20564.www2.hp.com/hpsc/doc/publ ... 906#N1004B , yours (300MHz?) is with Pentium II, but debian jessie may be able to boot with Pentium II https://www.debian.org/releases/jessie/ ... 01.html.en Judging from https://drive.google.com/file/d/0B1tusE ... sp=sharing , I wonder if root (or /boot) partition of the installed debian is not available or kernel is not loaded. Why do you use RAID5? Can you disable RAID5 at BIOS? Is there any culprit in BIOS settings? |
Hello, all-- I've been having some issues for some time with running "apt-get update". I frequently get "Failed to fetch" errors for some packages. Here is an example of my most recent apt-get update attempt. Code: Select allIgn http://dl.google.com stable InRelease Ign http://ftp.us.debian.org wheezy InRelease Ign http://security.debian.org wheezy/updates InRelease Get:1 http://dl.google.com stable Release.gpg [198 B] Ign http://security.debian.org wheezy/updates Release.gpg Get:2 http://ftp.us.debian.org wheezy-updates InRelease [132 kB] Ign http://ppa.launchpad.net jessie InRelease Get:3 http://dl.google.com stable Release [1,347 B] Ign http://security.debian.org wheezy/updates Release Get:4 http://dl.google.com stable/main i386 Packages [1,183 B] Ign http://ppa.launchpad.net jessie InRelease Ign http://download.opensuse.org ./ InRelease Ign http://ppa.launchpad.net trusty InRelease Hit http://download.opensuse.org ./ Release.gpg Ign http://ppa.launchpad.net jessie Release.gpg Hit http://ftp.us.debian.org jessie InRelease Hit http://download.opensuse.org ./ Release Get:5 https://people.debian.org xbmc-ffmpeg-unstable/ InRelease [321 B] Ign https://people.debian.org xbmc-ffmpeg-unstable/ InRelease Get:6 http://ftp.us.debian.org sid InRelease [210 kB] Ign http://ppa.launchpad.net jessie Release.gpg Get:7 https://people.debian.org xbmc-ffmpeg-unstable/ Release.gpg [543 B] Get:8 http://http.debian.net wheezy-backports InRelease [148 kB] Get:9 http://ppa.launchpad.net trusty Release.gpg [316 B] Hit https://people.debian.org xbmc-ffmpeg-unstable/ Release Ign https://people.debian.org xbmc-ffmpeg-unstable/ Release Get:10 http://http.debian.net unstable InRelease [210 kB] Ign http://ppa.launchpad.net jessie Release Get:11 https://people.debian.org xbmc-ffmpeg-unstable/ Packages/DiffIndex [331 B] Ign https://people.debian.org xbmc-ffmpeg-unstable/ Packages/DiffIndex Hit http://ftp.us.debian.org wheezy Release.gpg Ign http://ppa.launchpad.net jessie Release Get:12 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US [321 B] Ign http://dl.google.com stable/main Translation-en_US Get:13 http://ftp.us.debian.org wheezy-updates/main Sources [3,855 B] Hit http://download.opensuse.org ./ Packages Get:14 http://ppa.launchpad.net trusty Release [15.1 kB] Get:15 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en [318 B] Ign http://dl.google.com stable/main Translation-en Get:16 http://ftp.us.debian.org wheezy-updates/contrib Sources [14 B] Get:17 http://ftp.us.debian.org wheezy-updates/non-free Sources [14 B] Get:18 https://people.debian.org xbmc-ffmpeg-unstable/ Packages Get:19 http://ftp.us.debian.org wheezy-updates/main i386 Packages/DiffIndex [3,265 B] Get:20 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US [321 B] Get:21 http://ftp.us.debian.org wheezy-updates/contrib i386 Packages [14 B] Get:22 http://ftp.us.debian.org wheezy-updates/non-free i386 Packages [14 B] Get:23 http://ftp.us.debian.org wheezy-updates/contrib Translation-en [14 B] Get:24 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en [318 B] Get:25 http://ftp.us.debian.org wheezy-updates/main Translation-en/DiffIndex [2,023 B] Get:26 http://http.debian.net wheezy-backports/main i386 Packages/DiffIndex [7,819 B] Get:27 http://ftp.us.debian.org wheezy-updates/non-free Translation-en [14 B] Hit https://people.debian.org xbmc-ffmpeg-unstable/ Packages Get:28 http://http.debian.net wheezy-backports/main Translation-en/DiffIndex [7,819 B] Get:29 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US [321 B] Get:30 http://http.debian.net unstable/main i386 Packages/DiffIndex [7,876 B] Get:31 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en [318 B] Get:32 http://http.debian.net unstable/main Translation-en/DiffIndex [7,876 B] Get:33 http://ftp.us.debian.org sid/main i386 Packages/DiffIndex [7,876 B] Get:34 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US [321 B] Get:35 http://ppa.launchpad.net trusty/main Sources [568 B] Get:36 http://http.debian.net wheezy-backports/main i386 2015-06-22-1436.25.pdiff [328 B] Get:37 http://ftp.us.debian.org sid/contrib i386 Packages/DiffIndex [7,819 B] Get:38 http://ftp.us.debian.org sid/non-free i386 Packages/DiffIndex [7,819 B] Get:39 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en [318 B] Ign http://download.opensuse.org ./ Translation-en_US Get:40 http://ppa.launchpad.net trusty/main i386 Packages [439 B] Get:41 http://ftp.us.debian.org sid/contrib Translation-en/DiffIndex [7,819 B] Get:42 http://ppa.launchpad.net trusty/main Translation-en [264 B] Get:43 http://http.debian.net wheezy-backports/main i386 2015-06-22-2038.00.pdiff [391 B] Get:44 http://ftp.us.debian.org sid/main Translation-en/DiffIndex [7,876 B] Get:45 http://ftp.us.debian.org sid/non-free Translation-en/DiffIndex [7,819 B] Get:46 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US [321 B] Ign https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en_US Ign http://download.opensuse.org ./ Translation-en Hit http://ftp.us.debian.org wheezy Release Get:47 http://http.debian.net wheezy-backports/main i386 2015-07-01-2039.58.pdiff [31 B] Hit http://ftp.us.debian.org jessie/main i386 Packages Get:48 http://http.debian.net wheezy-backports/main i386 2015-06-30-1442.21.pdiff [2,108 B] Get:49 https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en [318 B] Hit http://ftp.us.debian.org jessie/contrib i386 Packages Ign https://people.debian.org xbmc-ffmpeg-unstable/ Translation-en Get:50 http://http.debian.net wheezy-backports/main i386 2015-07-06-2045.28.pdiff [613 B] Hit http://ftp.us.debian.org jessie/non-free i386 Packages Hit http://ftp.us.debian.org jessie/contrib Translation-en Hit http://ftp.us.debian.org jessie/main Translation-en Get:51 http://http.debian.net wheezy-backports/main i386 2015-07-08-0248.35.pdiff [3,477 B] Hit http://ftp.us.debian.org jessie/non-free Translation-en Get:52 http://ftp.us.debian.org sid/contrib i386 2015-06-19-1436.25.pdiff [252 B] Get:53 http://http.debian.net wheezy-backports/main i386 2015-07-16-2047.23.pdiff [642 B] Get:54 http://http.debian.net wheezy-backports/main i386 2015-07-16-2047.23.pdiff [642 B] Get:55 http://ftp.us.debian.org sid/contrib i386 2015-06-21-2035.20.pdiff [415 B] Get:56 http://ftp.us.debian.org sid/contrib i386 2015-06-22-0236.38.pdiff [361 B] Get:57 http://http.debian.net wheezy-backports/main 2015-06-22-1436.25.pdiff [103 B] Get:58 http://ftp.us.debian.org sid/contrib i386 2015-06-24-0239.36.pdiff [493 B] Err http://security.debian.org wheezy/updates/main Sources 404 Not Found [IP: 128.61.240.73 80] Get:59 http://ftp.us.debian.org sid/contrib i386 2015-06-24-1440.36.pdiff [1,603 B] Err http://security.debian.org wheezy/updates/contrib Sources 404 Not Found [IP: 128.61.240.73 80] Get:60 http://http.debian.net wheezy-backports/main 2015-06-30-1442.21.pdiff [956 B] Get:61 http://ftp.us.debian.org sid/contrib i386 2015-06-24-2041.54.pdiff [928 B] Err http://security.debian.org wheezy/updates/non-free Sources 404 Not Found [IP: 128.61.240.73 80] Err http://security.debian.org wheezy/updates/main i386 Packages 404 Not Found [IP: 128.61.240.73 80] Err http://security.debian.org wheezy/updates/contrib i386 Packages 404 Not Found [IP: 128.61.240.73 80] Get:62 http://ftp.us.debian.org sid/contrib i386 2015-06-27-2039.59.pdiff [233 B] Err http://security.debian.org wheezy/updates/non-free i386 Packages 404 Not Found [IP: 128.61.240.73 80] Get:63 http://http.debian.net wheezy-backports/main 2015-07-01-2039.58.pdiff [31 B] Get:64 http://ftp.us.debian.org sid/contrib i386 2015-07-08-0846.25.pdiff [481 B] Ign http://security.debian.org wheezy/updates/contrib Translation-en_US Get:65 http://ftp.us.debian.org sid/contrib i386 2015-07-08-1448.02.pdiff [29 B] Ign http://security.debian.org wheezy/updates/contrib Translation-en Ign http://security.debian.org wheezy/updates/main Translation-en_US Get:66 http://http.debian.net wheezy-backports/main 2015-07-16-2047.23.pdiff [417 B] Get:67 http://ftp.us.debian.org sid/contrib i386 2015-07-10-0245.27.pdiff [990 B] Ign http://security.debian.org wheezy/updates/main Translation-en Get:68 http://ftp.us.debian.org sid/contrib i386 2015-07-10-1444.40.pdiff [637 B] Ign http://security.debian.org wheezy/updates/non-free Translation-en_US Get:69 http://ftp.us.debian.org sid/contrib i386 2015-07-15-1448.53.pdiff [1,994 B] Ign http://security.debian.org wheezy/updates/non-free Translation-en Get:70 http://http.debian.net wheezy-backports/main 2015-07-23-1448.36.pdiff [4,092 B] Get:71 http://ftp.us.debian.org sid/contrib i386 2015-07-19-2048.44.pdiff [624 B] Get:72 http://http.debian.net wheezy-backports/main 2015-07-23-1448.36.pdiff [4,092 B] Get:73 http://ftp.us.debian.org sid/contrib i386 2015-07-20-1448.42.pdiff [1,611 B] Get:74 http://ftp.us.debian.org sid/contrib i386 2015-07-20-2047.52.pdiff [869 B] Get:75 http://ftp.us.debian.org sid/contrib i386 2015-07-21-0250.43.pdiff [1,239 B] Get:76 http://ftp.us.debian.org sid/contrib i386 2015-07-21-0850.03.pdiff [38 B] Get:77 http://http.debian.net unstable/main Translation-en [5,042 kB] Get:78 http://ftp.us.debian.org sid/contrib i386 2015-07-21-1449.47.pdiff [517 B] Get:79 http://ftp.us.debian.org sid/contrib i386 2015-07-21-2049.10.pdiff [29 B] Get:80 http://ftp.us.debian.org sid/contrib i386 2015-07-22-1449.38.pdiff [388 B] Get:81 http://ftp.us.debian.org sid/contrib i386 2015-07-22-2049.44.pdiff [29 B] Get:82 http://ftp.us.debian.org sid/contrib i386 2015-07-26-0850.47.pdiff [433 B] Get:83 http://ftp.us.debian.org sid/contrib i386 2015-07-26-0850.47.pdiff [433 B] Get:84 http://ftp.us.debian.org sid/non-free i386 2015-06-22-0236.38.pdiff [695 B] Get:85 http://ftp.us.debian.org sid/non-free i386 2015-06-23-0836.36.pdiff [31 B] Get:86 http://ftp.us.debian.org sid/non-free i386 2015-06-24-0239.36.pdiff [431 B] Get:87 http://ftp.us.debian.org sid/non-free i386 2015-06-25-2041.30.pdiff [728 B] Get:88 http://ftp.us.debian.org sid/non-free i386 2015-06-26-2040.59.pdiff [248 B] Get:89 http://ftp.us.debian.org sid/non-free i386 2015-06-27-1442.44.pdiff [507 B] Get:90 http://ftp.us.debian.org sid/non-free i386 2015-07-01-0842.17.pdiff [234 B] Err http://ppa.launchpad.net jessie/main i386 Packages 404 Not Found Get:91 http://ftp.us.debian.org sid/non-free i386 2015-07-02-1442.16.pdiff [258 B] Ign http://ppa.launchpad.net jessie/main Translation-en_US Get:92 http://ftp.us.debian.org sid/non-free i386 2015-07-06-2045.28.pdiff [363 B] Get:93 http://ftp.us.debian.org sid/non-free i386 2015-07-08-0248.35.pdiff [2,292 B] Ign http://ppa.launchpad.net jessie/main Translation-en Err http://ppa.launchpad.net jessie/main i386 Packages 404 Not Found Get:94 http://ftp.us.debian.org sid/non-free i386 2015-07-08-2049.11.pdiff [307 B] Get:95 http://ftp.us.debian.org sid/non-free i386 2015-07-10-0245.27.pdiff [2,539 B] Ign http://ppa.launchpad.net jessie/main Translation-en_US Get:96 http://ftp.us.debian.org sid/non-free i386 2015-07-14-0248.52.pdiff [42 B] Ign http://ppa.launchpad.net jessie/main Translation-en Get:97 http://ftp.us.debian.org sid/non-free i386 2015-07-15-2047.08.pdiff [332 B] Get:98 http://ftp.us.debian.org sid/non-free i386 2015-07-18-0246.16.pdiff [244 B] Get:99 http://ftp.us.debian.org sid/non-free i386 2015-07-23-0247.58.pdiff [455 B] Get:100 http://ftp.us.debian.org sid/non-free i386 2015-07-23-0910.58.pdiff [1,042 B] Get:101 http://ftp.us.debian.org sid/non-free i386 2015-07-23-1448.36.pdiff [427 B] Get:102 http://ftp.us.debian.org sid/non-free i386 2015-07-24-0250.04.pdiff [467 B] Get:103 http://ftp.us.debian.org sid/non-free i386 2015-07-24-0250.04.pdiff [467 B] Get:104 http://ftp.us.debian.org sid/contrib 2015-06-24-0239.36.pdiff [328 B] Get:105 http://ftp.us.debian.org sid/contrib 2015-06-24-1440.36.pdiff [470 B] Get:106 http://ftp.us.debian.org sid/contrib 2015-06-24-2041.54.pdiff [883 B] Get:107 http://ftp.us.debian.org sid/contrib 2015-06-25-0241.48.pdiff [29 B] Get:108 http://ftp.us.debian.org sid/contrib 2015-06-25-0844.51.pdiff [29 B] Get:109 http://ftp.us.debian.org sid/contrib 2015-07-15-1448.53.pdiff [556 B] Get:110 http://ftp.us.debian.org sid/contrib 2015-07-20-1448.42.pdiff [663 B] Get:111 http://ftp.us.debian.org sid/contrib 2015-07-20-1448.42.pdiff [663 B] Get:112 http://ftp.us.debian.org sid/main Translation-en [5,042 kB] Get:113 http://http.debian.net unstable/main i386 Packages [7,474 kB] Get:114 http://ftp.us.debian.org sid/non-free 2015-06-22-0236.38.pdiff [221 B] Get:115 http://ftp.us.debian.org sid/non-free 2015-06-23-0836.36.pdiff [31 B] Get:116 http://ftp.us.debian.org sid/non-free 2015-06-24-0239.36.pdiff [513 B] Get:117 http://ftp.us.debian.org sid/non-free 2015-06-25-2041.30.pdiff [572 B] Get:118 http://ftp.us.debian.org sid/non-free 2015-07-09-2046.24.pdiff [1,905 B] Get:119 http://ftp.us.debian.org sid/non-free 2015-07-10-0245.27.pdiff [67 B] Get:120 http://ftp.us.debian.org sid/non-free 2015-07-14-0248.52.pdiff [42 B] Get:121 http://ftp.us.debian.org sid/non-free 2015-07-23-1448.36.pdiff [493 B] Get:122 http://ftp.us.debian.org sid/non-free 2015-07-23-1448.36.pdiff [493 B] Get:123 http://ftp.us.debian.org sid/main i386 Packages [7,474 kB] Hit http://ftp.us.debian.org wheezy/main Sources Hit http://ftp.us.debian.org wheezy/contrib Sources Hit http://ftp.us.debian.org wheezy/non-free Sources Hit http://ftp.us.debian.org wheezy/main i386 Packages Hit http://ftp.us.debian.org wheezy/contrib i386 Packages Hit http://ftp.us.debian.org wheezy/non-free i386 Packages Hit http://ftp.us.debian.org wheezy/contrib Translation-en Hit http://ftp.us.debian.org wheezy/main Translation-en Hit http://ftp.us.debian.org wheezy/non-free Translation-en Fetched 25.9 MB in 50s (511 kB/s) W: GPG error: https://people.debian.org xbmc-ffmpeg-unstable/ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F664D256B4691A7D W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/main/source/Sources 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/contrib/source/Sources 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/non-free/source/Sources 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/main/binary-i386/Packages 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/contrib/binary-i386/Packages 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://security.debian.org/debian/dists/wheezy/updates/non-free/binary-i386/Packages 404 Not Found [IP: 128.61.240.73 80] W: Failed to fetch http://ppa.launchpad.net/team-xbmc/ppa/ubuntu/dists/jessie/main/binary-i386/Packages 404 Not Found W: Failed to fetch http://ppa.launchpad.net/team-xbmc/xbmc-nightly/ubuntu/dists/jessie/main/binary-i386/Packages 404 Not Found E: Some index files failed to download. They have been ignored, or old ones used instead. And here is my sources.list: Code: Select all# # deb cdrom:[Debian GNU/Linux 7.7.0 _Wheezy_ - Official i386 NETINST Binary-1 20141018-11:53]/ wheezy contrib main non-free # deb cdrom:[Debian GNU/Linux 7.7.0 _Wheezy_ - Official i386 NETINST Binary-1 20141018-11:53]/ wheezy contrib main non-free deb http://ftp.us.debian.org/debian wheezy main contrib non-free deb-src http://ftp.us.debian.org/debian wheezy main contrib non-free deb http://security.debian.org/debian wheezy/updates main contrib non-free deb-src http://security.debian.org/debian wheezy/updates main contrib non-free # wheezy-updates, previously known as 'volatile' deb http://ftp.us.debian.org/debian wheezy-updates main contrib non-free deb-src http://ftp.us.debian.org/debian wheezy-updates main contrib non-free #testing deb http://ftp.us.debian.org/debian jessie main contrib non-free #unstable deb http://ftp.us.debian.org/debian sid main contrib non-free #backports deb http://http.debian.net/debian/ wheezy-backports main # for Jessie and Sid (latest FFmpeg comes from unstable): deb https://people.debian.org/~rbalint/ppa/xbmc-ffmpeg xbmc-ffmpeg-unstable/ deb http://http.debian.net/debian unstable main I'm pretty sure the issue has something to do with the edits I did with my sources file. I edited in a bunch of different repositories when I was trying to install some newer packages and it messed something up. Now that we know this, how can I get things back to normal and properly update my packages? My Debian version (got from "uname -a"): Debian 3.16.7-ckt9-3~deb8u1~bpo70+1 (2015-04-27) i686 GNU/Linux Thank you. -- edit Decided to reinstall Debian (or some other distro) | I'm pretty sure the issue has something to do with the edits I did with my sources file.Definitely. Wheezy, Jessie, Testing, Unstable and Ubuntu PPAs! After you re-install the system, do not do that again. I also suggest reading the basic information about the system on debian.org. |
Where to change Single Double click option in Debian Jessie 8 | depends on your desktop environment,i use kde and you can change it in system settings,input devices and select your mouse |
Hello, I'm having issues setting up rsyslog to receive syslog from another server and only log to one file. I'm receiving the syslog from the remote side, however its putting the entries into more than one log file. I configured /etc/rsyslog.conf to enable udp, and I have implemented a filter to log only from that IP address, and then stop processing more rules, but it seems to continue on. Is this not the right place? I have found that the remote syslog events are using local0 and local1. There are two custom rsyslog config files in /etc/rsyslog.d that handle those two facilities. If I use that same if statement at the beginning of those custom config files, I can get it to work. Seems like a hack though. Not working: I put my if statement before the include statement, thinking I could stop it from hitting the custom rules. Code: Select all# /etc/rsyslog.conf Configuration file for rsyslog v3. # # For more information see # /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html ################# #### MODULES #### ################# $ModLoad imuxsock # provides support for local system logging $ModLoad imklog # provides kernel logging support (previously done by rklogd) #$ModLoad immark # provides --MARK-- message capability # provides UDP syslog reception #$ModLoad imudp #$UDPServerRun 514 # provides TCP syslog reception #$ModLoad imtcp #$InputTCPServerRun 514 $ModLoad imudp $UDPServerRun 514 ###################### # My code ###################### if $fromhost-ip == '<my IP>' then /var/log/<my directory>/syslog.log & ~ #################### ########################### #### GLOBAL DIRECTIVES #### ########################### $EscapeControlCharactersOnReceive off # # Use traditional timestamp format. # To enable high precision timestamps, comment out the following line. # $ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat # # Set the default permissions for all log files. # $FileOwner root $FileGroup adm $FileCreateMode 0644 $DirCreateMode 0755 # # Include all config files in /etc/rsyslog.d/ # $IncludeConfig /etc/rsyslog.d/*.conf ############### #### RULES #### ############### . . (The rest of the standard rsyslog.conf stuff) This works: A custom config file in /etc/rsyslog.d Code: Select allif $fromhost-ip == '<my ip>' then /var/log/<my directory>/syslog.log & ~ local0.* /var/log/<a log file for local0>.log This is on a WD Mycloud device: Code: Select allLinux WDMyCloud 3.2.26 #1 SMP Tue Jun 17 15:53:22 PDT 2014 wd-2.2-rel armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. | I have found out that the order that rules are processed in the $IncludeConfig directory is alphabetical by file name. I just made my custom .conf file and made sure it was the first one alphabetically. Same command to log from IP to file and stop processing more rules. |
Hi! I use an ADSL modem for my internet connection. I connect to the internet by running "pon dsl-provider" and disconnect by running poff. A few minutes ago I ran "aptitude safe-upgrade" on two computers with sid installed on them. After the upgrade finished I lost my internet connection on them. Then I rebooted the computers. When I ran "pon dsl-provider" and ifconfig, ppp0 did show up. /etc/resolv.conf seemed OK, but I couldn't ping any website or connect to any website using Firefox. I tried using OpenDNS but it didn't help. On the computer that I'm using now I didn't run "aptitude safe-upgrade" and the internet connection is fine, so the problem isn't related to my ADSL modem or my ISP. I would greatly appreciate any comments. tann | First put both ifconfig outcome here. |
I'm going traveling and I had the bright idea of putting my sensitive and irreplaceable files on an sd card. Then if I leave my stuff in a sketchy hostel for the day, I can easily take the card and might lose only a replaceable netbook. The problem is that I want some files to have 600 permissions (rw-------), readable and writable only by owner. But no power on earth seems to be able to force a fuse-ified filesystem to pay attention. Whether I try "chmod 600 filename.txt" as the owner/user or as sudo makes no difference. Nothing works. The sd card is mounted with a line in /etc/fstab: Code: Select allUUID=0000-0000 /mnt/64_GB_sdxc exfat auto,rw,user,exec,uid=1000,gid=1000,dmask=0022,flush,fmask=133 0 0 So the user owns the files and they have typical permissions instead of the automounted default of 700. That's all very nice, but I'd like to be able to change permissions on just a few files! Thanks for any help you wizards can give me . | exfat or fat or ntfs filesystems don't support or preserve permission bits like you are expecting. Access permissions on these filesystems are governed by the options passed during their mounting on Linux. You'll need a Linux filesystem (like ext3 or ext4) to change and preserve the permissions. Hope you already understand that if anyone has the root (or admin) access to the machine on which they mount this card, they can easily change the ownership or permissions again if they want. So what you want can only protect the files from casual or accidental access by others. If you want real protection against unauthorized access, encryption is the only way to go. |
I have Lenovo IdeaPad z510 laptop. My HDD SMART status is currently "failure". As my laptop is under warranty I can return it to lenovo. So I want to backup as much data as possible (everything is readable). I currently have 3 operating systems: linux xubuntu 14.10, debian 8 and windows 8.1 (triple-boot?). I want to back up only my current debian installation. There are 3 partitions for debian: root (about 50GB), home (>200GB) and swap. I know that I can backup the whole partition using: Code: Select alldd -if=/dev/sdaX -of=/locaton/of/backup -something And create .tar file with the whole home directory. But I have o idea how to restore it later. In /etc/fstab there are references to UUIDs, and as I understand, with new HDD these UUIDs would be different. And possibly the whole partition table would be different. And how would I restore GRUB? I can't make full image of my disk simply because I don't have disk to store it on. Is it possible to create backup on my current debian installation without actually making full HDD backup? Would it work if I would install debian on new disk, then from LiveCD overwrite it with my backup and modify /etc/fstab to match new partitions? | If you use plain `dd` you will backup the corrupted sectors on your drive. Try ddrescue instead. https://packages.debian.org/jessie/gddrescue Just to note: `dd` will copy the UUIDs as well so you shouldn't have to change anything. My current Arch system started off life on a USB stick and I transferred it to my internal SSD using `dd` |
Hi all, just for self. If ever your apt database at the end doesn't produce good result, just go to Code: Select all$cd /var/lib/apt/lists/ /var/lib/apt/lists$ sudo rm -rf * /var/lib/apt/lists/$ mkdir partial and do an aptitude update again. That should take care of it. | shirish wrote:If ever your apt database at the end doesn't produce good result, just go to ..... Would you please explain. |
The following bug: Debian Bug report logs - #790498 iceweasel: upgrading from jessie makes all passwords in the password manager invalid. The reporter noted this problem when he upgraded from version 37 to 38. causes listbug to block an update from iceweasel 38.01-2 bpo to iceweasel 39 (from wheezy-backports). Has anyone running Wheezy noted this bug in Iceweasel 39? If not, I presume it is necessary to disable listbug when doing this upgrade? Thanks, Steve | that upgrade doesn't come from the debian repos but from http://mozilla.debian.net/ (the status of mozilla.debian.net is, briefly, explained here) you have an workaround (if that bug impacts your system) here; comment 3 stevesr0 wrote:If not, I presume it is necessary to disable listbug when doing this upgrade? when apt-listbugs stops the upgrade and displays the bug information, you can proceed (if you want) pressing enter |
When starting up it takes at least 2 minutes to get to the log on screen. On inspection a start job /run/systemd/generator/dev-disk-by\x2duuid-93efa26f\x2dae38\x2d4c4a\x2dad95\x2da58117fd2069.swap takes 1.5 minutes to complete. There is a link to this in /run/systemd/generator/swap.target.wants thus: lrwxrwxrwx 1 root root 96 Jul 12 09:21 dev-disk-by\x2duuid-93efa26f\x2dae38\x2d4c4a\x2dad95\x2da58117fd2069.swap -> /run/systemd/generator/dev-disk-by\x2duuid-93efa26f\x2dae38\x2d4c4a\x2dad95\x2da58117fd2069.swap. This has only happened after an upgrade. How can I get around this? I tried deleting the link but on restart it is created again. | Remove (or comment out) the swap line in /etc/fstab -- systemd will mount it automatically. If this is not acceptable, post your fstab and the output of: Code: Select all# blkid |
Hi all, What is a .dps file, how do I view the same in debian ? I did try a file and this is what I got :- Code: Select all[$] file UEFI.dps UEFI.dps: Composite Document File V2 Document, Little Endian, Os: Windows, Version 6.1, Code page: 1200, Author: xxxxx, Total Editing Time: Sat Dec 30 05:00:00 1899, Last Printed: Sat Dec 30 05:00:00 1899, Create Time/Date: Fri Sep 23 20:07:58 2011, Last Saved Time/Date: Sat Dec 30 05:00:00 1899, Number of Pages: 0, Number of Words: 0, Number of Characters: 0, Security: 0, Locale ID: 2052 The .dps file is some Microsoft format. Libreoffice plays it cool. Although do get errors on the console like :- Code: Select all(soffice:12869): Gtk-CRITICAL **: gtk_style_context_set_path: assertion 'priv->widget == NULL' failed * (soffice:12869): CRITICAL **: GdkPixbuf* bitmapToPixbuf(SalBitmap*, SalBitmap*): assertion 'pBitmap->mnBitCount == 24' failed but still somehow functions | What is a .dps file, how do I view the same in debian ? |
DELL Inspiron with Debian 8 64-bit OS. I have installed Dropbox by downloading .deb file from Dropbox website I used the following in terminal to install the package .... su -c 'dpkg -i dropbox_2015.02.12_amd64.deb' Now I need to uninstall the package but I'm not sure of the exact syntax to use, if someone could advise, I would be grateful. Thanks | Try, as root (su or sudo) Code: Select alldpkg --purge dropbox_2015.02.12_amd64.deb |
Hello! I can't start idjc. This is the message I get: per@mustafejen:~$ idjc jack client ID: idjc_default something bad happened jackd seems to be running just fine. I saw some posts about loading idjc.so with ldd, this gave me: per@mustafejen:~$ ldd -r /usr/lib/idjc/idjc.so linux-vdso.so.1 (0x00007ffd4dbbf000) libglib-2.0.so.0 => /lib/x86_64-linux-gnu/libglib-2.0.so.0 (0x00007f493306d000) libavcodec.so.56 => /usr/lib/x86_64-linux-gnu/libavcodec.so.56 (0x00007f4932119000) libavformat.so.56 => /usr/lib/x86_64-linux-gnu/libavformat.so.56 (0x00007f4931dd7000) libavutil.so.54 => /usr/lib/x86_64-linux-gnu/libavutil.so.54 (0x00007f4931bab000) libFLAC.so.8 => /usr/lib/x86_64-linux-gnu/libFLAC.so.8 (0x00007f4931978000) libjack.so.0 => /usr/lib/x86_64-linux-gnu/libjack.so.0 (0x00007f493172e000) libmpg123.so.0 => /usr/lib/x86_64-linux-gnu/libmpg123.so.0 (0x00007f49314d3000) libmp3lame.so.0 => /usr/local/lib/libmp3lame.so.0 (0x00007f4931208000) libsamplerate.so.0 => /usr/lib/x86_64-linux-gnu/libsamplerate.so.0 (0x00007f4930e9b000) libshout-idjc.so.3 => /usr/lib/x86_64-linux-gnu/libshout-idjc.so.3 (0x00007f4930c89000) libsndfile.so.1 => /usr/lib/x86_64-linux-gnu/libsndfile.so.1 (0x00007f4930a1f000) libspeex.so.1 => /usr/lib/x86_64-linux-gnu/libspeex.so.1 (0x00007f4930805000) libvorbisenc.so.2 => /usr/lib/x86_64-linux-gnu/libvorbisenc.so.2 (0x00007f4930552000) libvorbis.so.0 => /usr/lib/x86_64-linux-gnu/libvorbis.so.0 (0x00007f4930325000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f4930023000) libogg.so.0 => /usr/lib/x86_64-linux-gnu/libogg.so.0 (0x00007f492fe1a000) libopus.so.0 => /usr/local/lib/libopus.so.0 (0x00007f492fbd2000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f492f9b4000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f492f60b000) libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x00007f492f39d000) libavresample.so.2 => /usr/lib/x86_64-linux-gnu/libavresample.so.2 (0x00007f492f17c000) libxvidcore.so.4 => /usr/lib/x86_64-linux-gnu/libxvidcore.so.4 (0x00007f492ee3e000) libx264.so.142 => /usr/lib/x86_64-linux-gnu/libx264.so.142 (0x00007f492eaa7000) libvpx.so.1 => /usr/lib/x86_64-linux-gnu/libvpx.so.1 (0x00007f492e6ae000) libtheoraenc.so.1 => /usr/lib/x86_64-linux-gnu/libtheoraenc.so.1 (0x00007f492e46e000) libtheoradec.so.1 => /usr/lib/x86_64-linux-gnu/libtheoradec.so.1 (0x00007f492e255000) libschroedinger-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libschroedinger-1.0.so.0 (0x00007f492df7f000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f492dd64000) libopenjpeg.so.5 => /usr/lib/x86_64-linux-gnu/libopenjpeg.so.5 (0x00007f492db40000) libgsm.so.1 => /usr/lib/x86_64-linux-gnu/libgsm.so.1 (0x00007f492d932000) libva.so.1 => /usr/lib/x86_64-linux-gnu/libva.so.1 (0x00007f492d71c000) librtmp.so.1 => /usr/lib/x86_64-linux-gnu/librtmp.so.1 (0x00007f492d4fe000) libgnutls-deb0.so.28 => /usr/lib/x86_64-linux-gnu/libgnutls-deb0.so.28 (0x00007f492d1de000) libbz2.so.1.0 => /lib/x86_64-linux-gnu/libbz2.so.1.0 (0x00007f492cfce000) librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f492cdc5000) libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f492cbc1000) libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f492c8b6000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f492c6a0000) /lib64/ld-linux-x86-64.so.2 (0x00007f49335df000) liborc-0.4.so.0 => /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0 (0x00007f492c41b000) libhogweed.so.2 => /usr/lib/x86_64-linux-gnu/libhogweed.so.2 (0x00007f492c1ec000) libnettle.so.4 => /usr/lib/x86_64-linux-gnu/libnettle.so.4 (0x00007f492bfb9000) libgmp.so.10 => /usr/lib/x86_64-linux-gnu/libgmp.so.10 (0x00007f492bd36000) libp11-kit.so.0 => /usr/lib/x86_64-linux-gnu/libp11-kit.so.0 (0x00007f492baf0000) libtasn1.so.6 => /usr/lib/x86_64-linux-gnu/libtasn1.so.6 (0x00007f492b8db000) libffi.so.6 => /usr/lib/x86_64-linux-gnu/libffi.so.6 (0x00007f492b6d3000) undefined symbol: lame_set_VBR_quality (/usr/lib/x86_64-linux-gnu/libavcodec.so.56) xmms2d also says something in the log file about lame_set_VBR_quality: /usr/lib/x86_64-linux-gnu/libavcodec.so.56: undefined symbol: lame_set_VBR_quality but xmms2d works for me. Now that I look at the output I see that I have lame installed in three places, /usr/local/lib, /usr/lib/i386-linux-gnu and /usr/lib/x86_64-linux-gnu. The one in /usr/local/lib is compiled from source, the other ones are debian packages if I remember things right. | I'm not use idjc, but try reinstall it: Code: Select allapt-get --reinstall install idjc Peter. |
Hi all, For about the last 24 hours I have been unable to install any packages with APT. A connection to ftp3.nrc.ca can never be established. 1) Is this a problem on my end, or is this mirror down? 2) Is there a way for me to (temporarily) change mirror? | SenorSalad wrote:Is there a way for me to (temporarily) change mirror? Use the Debian redirector instead. http://http.debian.net/ |
When I try to install new packages I get following errors Code: Select allE: cups: subprocess installed post-installation script returned error exit status 1 E: ntp: subprocess installed post-installation script returned error exit status 1 E: rsyslog: subprocess installed post-installation script returned error exit status 1 E: at: subprocess installed post-installation script returned error exit status 1 E: exim4-base: subprocess installed post-installation script returned error exit status 1 E: exim4-daemon-light: dependency problems - leaving unconfigured E: dbus: subprocess installed post-installation script returned error exit status 1 E: dbus-x11: dependency problems - leaving unconfigured E: sudo: subprocess installed post-installation script returned error exit status 1 E: gksu: dependency problems - leaving unconfigured E: gdebi: dependency problems - leaving unconfigured E: ppp: subprocess installed post-installation script returned error exit status 1 E: unattended-upgrades: subprocess installed post-installation script returned error exit status 1 E: python-software-properties: dependency problems - leaving unconfigured E: python-aptdaemon: dependency problems - leaving unconfigured E: aptdaemon: dependency problems - leaving unconfigured E: python-aptdaemon.gtk3widgets: dependency problems - leaving unconfigured Here is some detail Code: Select allSetting up cups (1.5.3-5+deb7u6) ... insserv: warning: script 'S99pcloudd_init' missing LSB tags and overrides insserv: warning: script 'pcloudd_init' missing LSB tags and overrides insserv: script pcloudd_init: service pcloudd_init already provided! insserv: warning: script 'pcloudd_init_start' missing LSB tags and overrides insserv: There is a loop at service minissdpd if started insserv: There is a loop between service pcloudd_init and mountnfs if started insserv: loop involving service mountnfs at depth 9 insserv: loop involving service nfs-common at depth 8 insserv: Starting pcloudd_init_start depends on minissdpd and therefore on system facility `$all' which can not be true! any suggestions on how to solve it? | Which version of Debian are you using? Post the output of: Code: Select allcat /etc/apt/sources.list ls /etc/apt/sources.list.d apt-cache policy Read the bottom link in my signature. |
I am trying to debug the installation. One of the sub-processes that does not install correctly is dsub-x11, which gives me following error: E: Internal Error, No file name for dbus-x11:i386 Does anyone knows how to fix this? | What version of Debian ? I am trying to debug the installation What "installation" ? What is being installed ? Perhaps you should read these first, then ,ask your question: http://forums.debian.net/viewtopic.php?f=30&t=49029 http://forums.debian.net/viewtopic.php?f=30&t=47078 Forum guidelines. Please read before first post! I tried to do a search for you, but really, there is not enough info in your post to even search very well. http://www.linuxintro.org/wiki/Error_me ... _solutions |
Just noticed that when using Iceweasel to view flash content I get a warning that the flash plugin is out of date. DUH ! I know that Adobe is no longer updating the Linux flash plugin but that they are providing security updates, and I see that Adobe has a newer revision than that supplied via contrib nonfree sources. So, I downloaded the latest from Adobe, BUT DID NOT TRY TO INSTALL. The thing that stopped me, other than not wanting to break the system, is that in the .tar.gz file I do not see the lib file that I was expecting to see ( I think it is libflashplayer.so ) . I also noticed that the .tar.gz file that there appears to be a file specifically for KDE, and no others. I am running Jessie and use LXDE . So, am I out of luck, or is there a way to update that pluggin ? Will Debian be updating the repos to include the latest flashplugin ? This, coupled with pepperflash plugin, is driving me to distraction. So, can anybody offer some help here? Maybe I should just ditch all the flash plugins and view only HTML5 (even though it also has some security issues). EGADS ! | Code: Select all~$ sudo update-flashplugin-nonfree --install works here |
If I enter a command into a root terminal that exceeds a certain number of characters, the command will continue on the same line, overwriting what was previously written. I have uploaded a video of the problem here: https://youtu.be/Jl8KCsHa6TU Does anyone know how to fix this problem? | There are two things I can think of to handle that problem: 1) Add following line in your root users .bashrc file: COLUMNS=250 Then execute the command "source .bashrc" to reload your .bashrc. 2) If the command is too long, type part of it then add \, press enter, and continue on the next line. You could also add this to your .bashrc to see if it has the desired effect: Code: Select all# check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize |
Dell Vostro 230 with integrated Broadcom NIC. Wakeonlan was working just fine with Wheezy on this machine. After upgrade, wakeonlan will resume from suspend but not from shutdown. I have no problem with other machines (same software setup) after upgrade. None of my other machines have a broadcom NIC. No BIOS settings were changed during the upgrade. If I enter the BIOS on boot and make sure settings are correct then 'save' and shutdown, without booting to debian, I can then successfully wakeonlan. Then, if I do not boot debian, but shutdown before debian starts, I can wakeonlan successfully again. If I boot debian and then shutdown, game over: wakeonlan nolonger works. $ ethtool eth0 | grep -i wake Supports Wake-on: g Wake-on: g A bit of research found the suggestion: $ lspci -tv | grep -i ether +-1c.2-[02]----00.0 Broadcom Corporation NetLink BCM57788 Gigabit Ethernet PCIe $ cat /proc/acpi/wakeup Device S-state Status Sysfs node P0P2 S4 *disabled P0P3 S4 *disabled P0P1 S4 *disabled pci:0000:00:1e.0 PS2K S4 *disabled PS2M S4 *disabled EUSB S4 *enabled pci:0000:00:1d.7 MC97 S4 *disabled P0P4 S4 *disabled pci:0000:00:1c.0 P0P5 S4 *disabled P0P6 S4 *disabled pci:0000:00:1c.2 P0P7 S4 *disabled P0P8 S4 *disabled P0P9 S4 *disabled USB0 S4 *enabled pci:0000:00:1d.0 USB1 S4 *enabled pci:0000:00:1d.1 USB2 S4 *enabled pci:0000:00:1d.2 USB3 S4 *enabled pci:0000:00:1d.3 SLPB S4 *disabled $ echo POP6 > /proc/acpi/wakeup But this did not help at all. Has anyone got wakeonlan working under Jessie with a Broadcom BCM57788? Any suggestions? Thanks for any help. | You can try a systemd custom unit file. Create a file at /etc/systemd/system/wol@.service with this content: Code: Select all[Unit] Description=Wake-on-LAN for %i Requires=network.target After=network.target [Service] ExecStart=/sbin/ethtool -s %i wol g Type=oneshot [Install] WantedBy=multi-user.target Then use these commands to start the .service immediately and for subsequent boots: Code: Select all# systemctl start wol@eth0.service # systemctl enable wol@eth0.service |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.