Pacman complains after Gummiboot upgrade

Hi,
just updated to gummiboot 24-1 which replaced gummiboot-efi. After installation pacman complained:
File system /boot is not a FAT EFI System Partition (ESP) file system.
Fehler: Befehl konnte nicht korrekt ausgeführt werden (Error: Command not executed)
I just wonder why gummiboot assumes /boot to be a FAT ESP? I mount my ESP at /boot/efi, because I thought this is common practice. Furthermore which command was not executed? Anyhow system is booting normal, so not a big deal.
Last edited by tobsen (2013-03-05 19:00:27)

65kid wrote:
srs5694 wrote:Imagine, for instance, one distribution setting up gummiboot on the ESP; then another one comes along and its installer decides that the ESP is too crowded, so it sets up gummiboot on a separate Freedesktop partition.
This is something that I would consider a buggy installer.
Perhaps -- but the Freedesktop spec creates more room for such bugs to be created than would other alternatives. All other things being equal (which I realize they aren't), it's better to have a spec that gives fewer opportunities for bugs in implementations than a spec that gives more opportunities for such bugs to breed.
Even if creating a separate ESP was a good idea, how would the installer even do that? It would have to shrink another partition first which is way too risky.
No, it wouldn't. An OS installer is presumably creating partition(s) for the OS, so that means that either the disk already has free space or an existing partition must be shrunk to make free space to install the OS. The second ESP or Freedesktop partition would just go in that free space. There's no rule that says that either the ESP or the Freedesktop partition must go before other partitions on the disk, although doing so is advisable because putting an ESP in the middle of the disk increases the odds that it will have to be moved in the future. Also, note that one of my points is that having two ESPs on a disk is inadvisable because Windows doesn't like such configurations; thus, I'd say that it's better to create a Freedesktop boot partition than a second ESP.
srs5694 wrote:Thus, the safest choice -- the one that's most likely to work with the greatest number of computers -- is to put the Linux boot loader (or a boot manager, at least) on the ESP, even if it's small, and put the kernel elsewhere.
But putting the kernel elsewhere is crazy for a simple reason: what if my root including the kernel is on an encrypted drive, RAID, LVM etc.?
I said "elsewhere," not "the Linux root (/) partition." In this context, "elsewhere" could easily be a separate Linux /boot partition, which can reside outside of the LVM or RAID, be unencrypted, be FAT, etc.
That's exactly what gummiboot is about - do only what the boot loader needs to do, let the kernel deal with the rest.
I would argue that "what the boot loader needs to do" should include "read partitions other than the one from which it was loaded." In the BIOS world, this pretty much goes without saying. In the EFI world, it's easier to create a boot loader that can read only from its own partition, but that will inevitably lead to problems on some systems and configurations.
And "the greatest number of computers" won't even care if their ESP is only 100MB, because they only use one OS. And whoever needs more should simply make the ESP big enough in the first place.
By "greatest number of computers" I meant the largest possible number, not the majority. Yes, the majority can probably make do with a 100MiB ESP, but to maximize usability, other configurations are more flexible and therefore preferable.
WonderWoofy wrote:I don understand why srs5694 includes the filesystem drivers in his rEFInd, but also understand your point about having the boot manager be as simple as possible like gummiboot.
Clearly there's a typo; I'm not sure if you mean you do understand or that you don't understand. In case it's the latter, it's because (a) they were available with the rEFIt source code and so could be (relatively) easily included with rEFInd; and (b) because including them in rEFInd greatly simplifies installing and using rEFInd on typical Fedora, Ubuntu, SUSE, and other distributions. These distributions typically either don't use LVM or use a separate ext2/3/4fs /boot partition. It's currently possible to download a Debian package or RPM of rEFInd, install it on one of these distributions, and have it all work without further tweaking, at least in most cases. (If the user uses XFS, JFS, Btrfs, or something else unusual to hold the kernel, this won't work without additional reconfiguration; but the default settings for these distributions put the kernel outside of LVM/RAID setups in ext4fs partitions.) In the end, this is partially labor saving for me, too; users tend to want things to Just Work, and when they don't, they e-mail me for help. Without those drivers, rEFInd does not Just Work on the more popular distributions, but with them, it does, so I spend less time answering e-mail.
It seems that the filesystem driver is optional and is only available if the necessary drivers are placed on the ESP.
rEFInd's filesystem drivers are implemented as separate binaries from rEFInd itself, so you can run rEFInd without using the drivers at all. Currently, the install.sh script (which I believe the Arch package omits) attempts to determine what filesystem is used on /boot and installs it, if necessary. If it's not necessary (say, if the filesystem is FAT), no filesystem driver gets installed unless the --alldrivers option is passed to install.sh. It's possible to use rEFInd's filesystem drivers without using rEFInd, but most EFIs lack support for loading filesystem drivers automatically, so the trick is to get them loaded.
65kid wrote:Modularity may be a good thing, duplicating logic still isn't, even if it's "just" a filesystem driver. The kernel already knows how to do it and it knows how to do it best, why waste effort duplicating the same logic into the bootloader?
Rudictio ad absurdum: The kernel already knows how to accept keyboard input, so why duplicate that functionality in a boot loader?
The answer is the same in both cases: Because it's necessary, or at least helpful, before the kernel loads.
I'm more than happy to admit that it's not necessary for the EFI or a boot loader to read Linux-specific filesystems if the user/installer sets up the computer with the kernel on a FAT filesystem. The problem is that in the real world, that conditional clause is often false. Note my earlier comments about Ubuntu, Fedora, etc. -- they all place their kernels on ext2/3/4 filesystems by default. Even many Arch users today have scripts and whatnot to copy their kernels to the ESP from /boot on some other filesystem. Yes, this becomes simpler if the ESP is mounted at /boot -- but as I've pointed out in this thread, doing this has its drawbacks, too, particularly when the user is a novice who hasn't thought things through or when using software (including third-party OSes) that set things up in a way that's not optimal for this type of configuration. I chose to fork rEFIt to rEFInd in order to glue together all the pieces I saw lying around that could almost handle the real-world situation. Now (as rEFInd) it can.
65kid wrote:I admit that I don't have a good understanding of how these EFI filesystem drivers work, but wouldn't you have also have to keep the EFI driver up-to-date separately?
Yes, but read-only filesystem drivers need little maintenance once they're stabilized. All of rEFInd's filesystem drivers are read-only, so they pose no real threats to your data.
WonderWoofy wrote:As far as updating the driver, I would imagine that this would be inclusive in the rEFInd updates.  But moving the necessary files to the proper places might indeed be manual (rEFInd is not my primary boot manager, so I am not sure if there is automagic function to be included here).
The install.sh script included with rEFInd will update the driver(s) along with the rEFInd binary and icons. Unfortunately, the Arch packagers have chosen to omit this script from the Arch packages (or they had the last time I checked).
65kid wrote:I didn't mean to say that these EFI drivers are complete non-sense, whoever thinks this is the better approach or has a special usecase for it has the option and may use it. I personally just don't see the usecase
Given the relative market shares of Arch vs. Fedora or Arch vs. Ubuntu, it's really the Arch way of doing things that qualifies as the "special usecase." The drivers -- and especially the ext4fs driver -- help a lot with installing rEFInd on these distributions and getting it working painlessly.
progandy wrote:Simply support kernel on ESP, if Windows cannot deal with more than one ESP that is not our problem to solve. The user will have to resize the partition in this case.
Philosophically, you're right -- Windows' bugs and limitations belong to Microsoft. Practically, I'm afraid it's not that simple -- if John Doe installs Linux and then tries to re-install Windows and discovers that it flakes out because of something that Linux put on the hard disk, who will John blame? Maybe Microsoft, but maybe Linux. Furthermore, if a Linux developer knows that the Windows bug exists, is the developer justified in ignoring that bug, knowing that doing so will cause John Doe problems in the future? IMHO, the answer is "no" -- although with the caveat that the difficulty of finding a solution is a factor, too.
As to resizing the ESP, as I wrote in post #12 in this thread, you shouldn't do that unnecessarily, since it will almost certainly require deleting or resizing the first partition that follows the ESP, and in some cases a partition or two after that, as well. Resizing partitions from their start points is inherently dangerous, so any policy that requires doing this will damage somebody's filesystem. This is an even clearer case where developers' decisions can have negative consequences, and developers have a moral obligation to avoid causing such problems (such as data loss), even indirectly.
I'd just like to take a step back from all this to clarify my main point: The Freedesktop proposed loader spec is a worthwhile attempt to address certain problems with boot loaders as they're currently implemented in Linux. I agree with most of their goals and some of the details of that proposal. If it were implemented universally tomorrow, though, it would cause problems. The main reason is because of gummiboot's limitations, which seem to have motivated many of the proposal's details. (Let me say that I'm not trying to trash gummiboot here; I do respect it, but it also has limitations that have important implications when it's used as the core of a proposal like this one.) Consider:
An existing installation has Windows and an ESP that's too small. Under the Freedesktop guidelines, a new Freedesktop partition will be created and used to hold kernels. I don't believe the proposal is specific about where the boot loader must reside, but there are two choices: Put gummiboot on the ESP, in which case it can launch Windows but not Linux; or put gummiboot on the Freedesktop boot partition, where it can launch Linux but not Windows. In either case it's not very useful by itself. In the latter case, the EFI might not even launch it, since the Freedesktop partition isn't an ESP, and IIRC, the EFI spec doesn't require the EFI to be able to launch boot programs on a non-ESP.
Now, consider if gummiboot were modified to support booting from other partitions. The six Freedesktop rules could be cut by two (removing #4 and #6) and slightly amended (to make $BOOT always be a Freedesktop partition and never an ESP, and to permit multiple Freedesktop partitions per disk should the need arise). This will eliminate the problem I've just identified and simplify the rules that OS installers or administrators should follow, thus reducing the odds of bugs or different interpretations causing problems. Yes, it means that the Freedesktop developers will need to add some code to their boot loader. OTOH, this also means there will be:
Less ambiguity about what /boot is (the ESP vs. the Freedesktop boot partition) on any given system; this will lead to simpler code in support scripts and less chance of user error because of confusion or help from others based on false assumptions
Less chance of another OS altering or damaging the Linux boot loader files, thus improving overall system reliability
Less chance of creating a configuration in which gummiboot is incapable of booting some OSes that are legally installed
A need for fewer rules in the proposal, thereby reducing the odds of differing interpretations causing compatibility problems
Overall, I'd say these benefits are worth a few extra lines of code.

Similar Messages

  • [Solved] Pacman error after incomplete upgrade

    Hi
    I was updating my archlinux when my X11 crashed (I was restarting it after tweaking my gnome 3) .
    Trying to update after that indicated that my system was already uptodate. Installing anything indicated that pacman was running else to delete a file /var/lib/pacman/db.lck , which I did.
    Now I can install but get these errors (for an example of re-installing pacman):
    pacman -S pacman
    warning: pacman-3.5.4-3 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    error: could not open file /var/lib/pacman/local/xulrunner-6.0-1/desc: No such file or directory
    error: could not open file /var/lib/pacman/local/xulrunner-6.0-1/desc: No such file or directory
    Targets (1): pacman-3.5.4-3
    Total Download Size:    0.00 MB
    Total Installed Size:   2.87 MB
    Proceed with installation? [Y/n] y
    (1/1) checking package integrity                   [######################] 100%
    (1/1) checking for file conflicts                  [######################] 100%
    (1/1) upgrading pacman                             [######################] 100%
    ldconfig: file /usr/lib/xulrunner-6.0/libxul.so is truncated
    Can any one help me? I am clueless. I know I made a mistake ... will be careful next time. Also I am sure that my system is not upto date, though pacman indicates it is.
    Last edited by jlight2011 (2011-08-17 12:00:19)

    No luck mate!
    I get the following
    pacman -Syy
    :: Synchronizing package databases...
    core                                                                                      35.6K 1413.9K/s 00:00:00 [#######################################################] 100%
    warning: resuming download of extra.db not possible; starting over
    error: extra.db appears to be truncated: 485471/485689 bytes         176.0K  289.1K/s 00:00:01 [####################-----------------------------------]  37%
    error: failed to update extra (failed to retrieve some files)
    multilib                                                             26.5K  204.0M/s 00:00:00 [#######################################################] 100%
    I tried copying the extra.db file directly from my repo to the folder. But get the same error!

  • Problem after I upgrade pacman to 3.1.0

    I have this message after I upgrade pacman to 3.1.0:
    [root@xxxx ~]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets: alunn-0.7.1.3-1 compiz-core-0.6.2-4 compiz-decorator-gtk-0.6.2-5
    device-mapper-1.02.24-1 lvm2-2.02.29-1 ntfs-3g-1.1120-1
    syslog-ng-2.0.6-1
    Total Download Size: 2.11 MB
    Total Installed Size: 5.21 MB
    Proceed with installation? [Y/n] y
    *** glibc detected *** pacman: double free or corruption (out): 0x08908520 ***
    ======= Backtrace: =========
    /lib/libc.so.6[0xb7d98836]
    /lib/libc.so.6(cfree+0x89)[0xb7d9a4d9]
    /usr/lib/libalpm.so.2(alpm_list_free_inner+0x23)[0xb7ecdd03]
    /usr/lib/libalpm.so.2(alpm_option_set_cachedirs+0x39)[0xb7ed6a59]
    /usr/lib/libalpm.so.2[0xb7ee2a12]
    /usr/lib/libalpm.so.2[0xb7eddff9]
    /usr/lib/libalpm.so.2[0xb7ee086b]
    /usr/lib/libalpm.so.2(alpm_trans_commit+0x3e)[0xb7ee094e]
    pacman[0x8050d9f]
    pacman[0x804e97d]
    /lib/libc.so.6(__libc_start_main+0xe0)[0xb7d47390]
    pacman[0x804b041]
    ======= Memory map: ========
    08048000-08058000 r-xp 00000000 08:02 100218 /usr/bin/pacman
    08058000-08059000 rw-p 0000f000 08:02 100218 /usr/bin/pacman
    08059000-089a1000 rw-p 08059000 00:00 0 [heap]
    b7900000-b7921000 rw-p b7900000 00:00 0
    b7921000-b7a00000 ---p b7921000 00:00 0
    b7b09000-b7b17000 r-xp 00000000 08:02 832 /lib/libresolv-2.7.so
    b7b17000-b7b19000 rw-p 0000d000 08:02 832 /lib/libresolv-2.7.so
    b7b19000-b7b1b000 rw-p b7b19000 00:00 0
    b7b24000-b7b2e000 r-xp 00000000 08:02 98155 /usr/lib/libgcc_s.so.1
    b7b2e000-b7b2f000 rw-p 00009000 08:02 98155 /usr/lib/libgcc_s.so.1
    b7b2f000-b7b30000 rw-p b7b2f000 00:00 0
    b7b30000-b7d30000 r--p 00000000 08:02 99239 /usr/lib/locale/locale-archive
    b7d30000-b7d31000 rw-p b7d30000 00:00 0
    b7d31000-b7e61000 r-xp 00000000 08:02 2342 /lib/libc-2.7.so
    b7e61000-b7e62000 r--p 00130000 08:02 2342 /lib/libc-2.7.so
    b7e62000-b7e64000 rw-p 00131000 08:02 2342 /lib/libc-2.7.so
    b7e64000-b7e67000 rw-p b7e64000 00:00 0
    b7e67000-b7e76000 r-xp 00000000 08:02 882 /lib/libbz2.so.1.0.4
    b7e76000-b7e77000 rw-p 0000f000 08:02 882 /lib/libbz2.so.1.0.4
    b7e77000-b7e78000 rw-p b7e77000 00:00 0
    b7e78000-b7e89000 r-xp 00000000 08:02 2373 /lib/libz.so.1.2.3
    b7e89000-b7e8a000 rw-p 00010000 08:02 2373 /lib/libz.so.1.2.3
    b7e8a000-b7e8d000 r-xp 00000000 08:02 870 /lib/libattr.so.1.1.0
    b7e8d000-b7e8e000 rw-p 00002000 08:02 870 /lib/libattr.so.1.1.0
    b7e8e000-b7e94000 r-xp 00000000 08:02 872 /lib/libacl.so.1.1.0
    b7e94000-b7e95000 rw-p 00005000 08:02 872 /lib/libacl.so.1.1.0
    b7e95000-b7eba000 r-xp 00000000 08:02 99504 /usr/lib/libarchive.so.2.4.11
    b7eba000-b7ebb000 rw-p 00025000 08:02 99504 /usr/lib/libarchive.so.2.4.11
    b7ebb000-b7ebc000 rw-p b7ebb000 00:00 0
    b7ebc000-b7ec6000 r-xp 00000000 08:02 99514 /usr/lib/libdownload.so
    b7ec6000-b7ec7000 rw-p 0000a000 08:02 99514 /usr/lib/libdownload.so
    b7ec7000-b7eea000 r-xp 00000000 08:02 100203 /usr/lib/libalpm.so.2.0.0
    b7eea000-b7eeb000 rw-p 00022000 08:02 100203 /usr/lib/libalpm.so.2.0.0
    b7eeb000-b7eec000 rw-p b7eeb000 00:00 0
    b7eee000-b7ef2000 r-xp 00000000 08:02 859 /lib/libnss_dns-2.7.so
    b7ef2000-b7ef4000 rw-p 00003000 08:02 859 /lib/libnss_dns-2.7.so
    b7ef4000-b7efd000 r-xp 00000000 08:02 853 /lib/libnss_files-2.7.so
    b7efd000-b7eff000 rw-p 00008000 08:02 853 /lib/libnss_files-2.7.so
    b7eff000-b7f01000 rw-p b7eff000 00:00 0
    b7f01000-b7f02000 r-xp b7f01000 00:00 0 [vdso]
    b7f02000-b7f1c000 r-xp 00000000 08:02 826 /lib/ld-2.7.so
    b7f1c000-b7f1e000 rw-p 0001a000 08:02 826 /lib/ld-2.7.so
    bfd0d000-bfd22000 rw-p bffeb000 00:00 0 [stack]
    Aborted
    Thx
    Last edited by subset (2008-01-13 09:33:56)

    Here is some:
    root@x# ls -l /var/cache/pacman/pkg
    -rw-r--r-- 1 root root 14743 2007-12-17 11:17 xorg-xinit-1.0.7-2-i686.pkg.tar.gz
    -r--r--r-- 1 root root 164582 2007-12-03 16:23 xorg-xkb-utils-1.0.2-2.pkg.tar.gz
    -r--r--r-- 1 root root 69282 2007-12-03 16:23 xorg-xsm-1.0.1-2.pkg.tar.gz
    -r--r--r-- 1 root root 78458 2007-12-03 16:22 xproto-7.0.11-1-i686.pkg.tar.gz
    -rw-r--r-- 1 root root 345465 2007-12-14 11:11 xsp-1.2.6-1-i686.pkg.tar.gz
    -r--r--r-- 1 root root 205055 2007-12-03 16:22 xterm-229-2.pkg.tar.gz
    -r--r--r-- 1 root root 56158 2007-12-03 16:21 xtrans-1.0.4-1.pkg.tar.gz
    -r--r--r-- 1 root root 11241708 2007-12-03 16:23 xulrunner-1.8.1.9-1-i686.pkg.tar.gz
    -r--r--r-- 1 root root 470003 2007-12-03 16:22 xvidcore-1.1.3-1.pkg.tar.gz
    -rw-r--r-- 1 root root 623874 2007-12-05 18:19 yelp-2.20.0-2-i686.pkg.tar.gz
    -r--r--r-- 1 root root 920399 2007-12-03 16:23 your-freedom-20071031-1.pkg.tar.gz
    -rw-r--r-- 1 root root 1941795 2007-12-26 22:54 zenity-2.20.1-1-i686.pkg.tar.gz
    -r--r--r-- 1 root root 71767 2007-12-03 16:22 zip-2.32-1.pkg.tar.gz
    -rw-r--r-- 1 root root 107651 2007-12-03 16:22 zlib-1.2.3-4-i686.pkg.tar.gz
    -rw-r--r-- 1 root root 694211 2007-12-25 11:54 zope-interface-3.3.0-2.pkg.tar.gz
    Thx

  • Xorg Segfaulting on viewing console (ctl+alt+f1) after nvidia upgrade

    I upgraded nvidia and nvidia-utils yesterday to the current nvidia-utils 169.09-2 and nvidia-utils 169.09-1 versions respectively.  Pacman complained about the presence of  /usr/lib/libXvMCNVIDIA_dynamic.so.1, so I followed the advice here (http://archlinux.org/pipermail/arch-gen … 16508.html) and did a -Sf installation.  After that the installation and restart (I upgraded the kernel at the same time), went smoothly.
    I run icewm, but boot to the console and start X manually.  I tend to drop back into the console (ctl+alt+f1) fairly regularly.  The X-server has now begun to catch Sig 11 and segfault  (unpredictably), when I go to the console.  It has happened three times today - the Xorg log terminates with :
    Backtrace:
    0: /usr/bin/X(xf86SigHandler+0x7e) [0x80baf4e]
    1: [0xb7f0f420]
    Fatal server error:
    Caught signal 11.  Server aborting
    Any ideas please?

    I'm posting here the setup of my /usr/lib/xorg/modules so you guys can see if there's a difference from removing the old package on the update or deleting the files by hand.
    drwxr-xr-x 2 root root 26 Jan 25 16:59 drivers
    drwxr-xr-x 2 root root 4,0K Fev 11 12:13 extensions
    drwxr-xr-x 2 root root 27 Fev 3 12:59 fonts
    drwxr-xr-x 2 root root 42 Nov 5 20:45 input
    -rwxr-xr-x 1 root root 145K Fev 3 12:59 libafb.so
    -rwxr-xr-x 1 root root 298K Fev 3 12:59 libcfb.so
    -rwxr-xr-x 1 root root 114K Fev 3 12:59 libcfb32.so
    -rwxr-xr-x 1 root root 63K Fev 3 12:59 libexa.so
    -rwxr-xr-x 1 root root 160K Fev 3 12:59 libfb.so
    -rwxr-xr-x 1 root root 30K Fev 3 12:59 libint10.so
    -rwxr-xr-x 1 root root 133K Fev 3 12:59 libmfb.so
    -rwxr-xr-x 1 root root 269K Jan 25 16:59 libnvidia-wfb.so.169.09
    -rwxr-xr-x 1 root root 954K Fev 3 12:59 libpcidata.so
    -rwxr-xr-x 1 root root 2,1M Fev 3 12:59 libscanpci.so
    -rwxr-xr-x 1 root root 22K Fev 3 12:59 libshadow.so
    -rwxr-xr-x 1 root root 26K Fev 3 12:59 libshadowfb.so
    -rwxr-xr-x 1 root root 23K Fev 3 12:59 libvbe.so
    -rwxr-xr-x 1 root root 28K Fev 3 12:59 libvgahw.so
    lrwxrwxrwx 1 root root 45 Fev 11 12:13 libwfb.so -> /usr/lib/xorg/modules/libnvidia-wfb.so.169.09
    -rwxr-xr-x 1 root root 196K Fev 3 12:59 libwfb.so.1.4
    -rwxr-xr-x 1 root root 355K Fev 3 12:59 libxaa.so
    -rwxr-xr-x 1 root root 158K Fev 3 12:59 libxf1bpp.so
    -rwxr-xr-x 1 root root 95K Fev 3 12:59 libxf4bpp.so
    -rwxr-xr-x 1 root root 4,8K Fev 3 12:59 libxf8_16bpp.so
    -rwxr-xr-x 1 root root 161K Fev 3 12:59 libxf8_32bpp.so
    drwxr-xr-x 2 root root 26 Fev 3 12:59 linux
    drwxr-xr-x 2 root root 150 Fev 3 12:59 multimedia

  • Wicd stuck "validating authentication" after kernel upgrade [ath9k]

    Hey everyone,
    I upgraded from Kernel 3.2.14-1 to 3.3.1 last night. After a reboot today, I couldn't connect through my wifi at all. I use wicd, and it was able to scan for networks but would get stuck on the "validating authentication" stage of a WPA2 wireless network.  I'm lucky I was able to use my phone to look for solutions, or I woulda been stuck for much longer than I was.
    I tried connecting manually without wicd following the steps outlined here https://bbs.archlinux.org/viewtopic.php?id=72772, but dhcpcd timed out in the last step and I couldn't connect.
    I have an exam tomorrow so I don't have that much time to keep troubleshooting, but I thought I should post abouit it.
    I've downgraded back to 3.2.14-1 and that fixed my wifi for now, I have Arch on my Macbook 2,1 using an ath9k wireless card. Let me know if there is any other useful info I can give you guys.
    EDIT:
    Here is my /var/log/pacman.log for the upgrade and downgrade
    [2012-04-08 19:49] upgraded bitlbee (3.0.5-2 -> 3.0.5-3)
    [2012-04-08 19:49] upgraded chromium (18.0.1025.151-1 -> 18.0.1025.151-3)
    [2012-04-08 19:49] upgraded dirmngr (1.1.0-3 -> 1.1.0-4)
    [2012-04-08 19:49] >>> Updating module dependencies. Please wait ...
    [2012-04-08 19:49] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-04-08 19:49] ==> Building image from preset: 'default'
    [2012-04-08 19:49] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-04-08 19:49] ==> Starting build: 3.3.1-1-ARCH
    [2012-04-08 19:49] -> Parsing hook: [base]
    [2012-04-08 19:49] -> Parsing hook: [udev]
    [2012-04-08 19:49] -> Parsing hook: [autodetect]
    [2012-04-08 19:49] -> Parsing hook: [pata]
    [2012-04-08 19:49] -> Parsing hook: [scsi]
    [2012-04-08 19:49] -> Parsing hook: [sata]
    [2012-04-08 19:49] -> Parsing hook: [filesystems]
    [2012-04-08 19:49] -> Parsing hook: [usbinput]
    [2012-04-08 19:49] ==> Generating module dependencies
    [2012-04-08 19:49] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-04-08 19:49] ==> Image generation successful
    [2012-04-08 19:49] ==> Building image from preset: 'fallback'
    [2012-04-08 19:49] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-04-08 19:49] ==> Starting build: 3.3.1-1-ARCH
    [2012-04-08 19:49] -> Parsing hook: [base]
    [2012-04-08 19:49] -> Parsing hook: [udev]
    [2012-04-08 19:49] -> Parsing hook: [pata]
    [2012-04-08 19:49] -> Parsing hook: [scsi]
    [2012-04-08 19:49] -> Parsing hook: [sata]
    [2012-04-08 19:49] -> Parsing hook: [filesystems]
    [2012-04-08 19:49] -> Parsing hook: [usbinput]
    [2012-04-08 19:49] ==> Generating module dependencies
    [2012-04-08 19:49] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-04-08 19:49] ==> Image generation successful
    [2012-04-08 19:49] upgraded linux (3.2.14-1 -> 3.3.1-1)
    [2012-04-08 19:49] upgraded lirc-utils (1:0.9.0-12 -> 1:0.9.0-15)
    [2012-04-08 19:49] upgraded ncmpcpp (0.5.9-1 -> 0.5.10-1)
    [2012-04-08 19:49] upgraded python-pysqlite (2.6.3-1 -> 2.6.3-2)
    [2012-04-08 19:49] The default location of gem installs is $HOME/.gem/ruby
    [2012-04-08 19:49] Add the following line to your PATH if you plan to install using gem
    [2012-04-08 19:49] $(ruby -rubygems -e "puts Gem.user_dir")/bin
    [2012-04-08 19:49] If you want to install to the system wide location, you must either:
    [2012-04-08 19:49] edit /etc/gemrc or run gem with the --no-user-install flag.
    [2012-04-08 19:49] upgraded ruby (1.9.3_p125-3 -> 1.9.3_p125-4)
    [2012-04-09 12:02] Running 'pacman -U linux-3.2.14-1-x86_64.pkg.tar.xz'
    [2012-04-09 12:02] >>> Updating module dependencies. Please wait ...
    [2012-04-09 12:02] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-04-09 12:02] ==> Building image from preset: 'default'
    [2012-04-09 12:02] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-04-09 12:02] ==> Starting build: 3.2.14-1-ARCH
    [2012-04-09 12:02] -> Parsing hook: [base]
    [2012-04-09 12:02] -> Parsing hook: [udev]
    [2012-04-09 12:02] -> Parsing hook: [autodetect]
    [2012-04-09 12:02] -> Parsing hook: [pata]
    [2012-04-09 12:02] -> Parsing hook: [scsi]
    [2012-04-09 12:02] -> Parsing hook: [sata]
    [2012-04-09 12:02] -> Parsing hook: [filesystems]
    [2012-04-09 12:02] -> Parsing hook: [usbinput]
    [2012-04-09 12:02] ==> Generating module dependencies
    [2012-04-09 12:02] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-04-09 12:02] ==> Image generation successful
    [2012-04-09 12:02] ==> Building image from preset: 'fallback'
    [2012-04-09 12:02] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-04-09 12:02] ==> Starting build: 3.2.14-1-ARCH
    [2012-04-09 12:02] -> Parsing hook: [base]
    [2012-04-09 12:02] -> Parsing hook: [udev]
    [2012-04-09 12:02] -> Parsing hook: [pata]
    [2012-04-09 12:02] -> Parsing hook: [scsi]
    [2012-04-09 12:02] -> Parsing hook: [sata]
    [2012-04-09 12:02] -> Parsing hook: [filesystems]
    [2012-04-09 12:02] -> Parsing hook: [usbinput]
    [2012-04-09 12:02] ==> Generating module dependencies
    [2012-04-09 12:02] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-04-09 12:02] ==> Image generation successful
    [2012-04-09 12:02] upgraded linux (3.3.1-1 -> 3.2.14-1)
    Last edited by rlevArch (2012-04-09 17:14:11)

    I should also add that for the first set of 3.2.x kernel updates, ath9k was causing a lot of kernel panics. Other people were complaining about that though, and it seems like it was fixed in a later update.
    This issue probably has to do with Atheros and not wicd. The kernel deals with hardware and I didn't have to touch wicd to break/fix the validation issue. I'm gonna add ath9k to the thread title.
    Last edited by rlevArch (2012-04-09 17:14:31)

  • [SOLVED]Problem with logging in after system upgrade

    Hi,
    I'm encountering some problem after rebooting my machine just after last upgrade. Few minutes ago I was sure I found the source of the problem when system hang on "Reached target Graphical Interface" message. Reason - nvidia drivers had to be replaced with legacy version (https://www.archlinux.org/news/nvidia-340xx-and-nvidia/). But it didn't help. Also it made things a little bit worse. Because now my system uses nvidia-340xx and it seems drivers are fine but when login screen of lightdm should appear screens stay blank... and nothing happens. I simply can't do anything.
    What I noticed is also xfce4-session was upgraded (4.10.1.3->4.10.1-5) and maybe this is the separate problem? but I can't downgrade this package as some time ago I removed all contents of /var/cache/pacman/pkg.
    What I have is arch on pendrive so I can chroot into existing system.
    Any ideas?
    Last edited by jakub (2014-10-08 22:09:02)

    I found something similar to line
    (EE) Mar 07 14:05:07 NVIDIA(0): WAIT: (E, 0, 0x837d, 0)
    these values are not exact as I'm too tired now to rewrite the real ones from screen 
    maybe I should install some older nvidia drivers (these 340xx are broken somehow I think). Unfortunately I don't have my /pkg content anymore.
    Where can I download packages like nvidia-340.32-1-x86_64.pkg.tar.xz from? (according to pacman.log I had this version back in July and it was working fine I think).
    I could also start X with Nouveau drivers but not xfce (anyway I would like to install old nvidia drivers back)
    Last edited by jakub (2014-10-08 22:03:11)

  • Gtk messed up after latest upgrade

    After latest upgrades it seems that anything gtk-related (2 or 3) is drawn as garbage, see image on http://i.imgur.com/g57D0KS.jpg
    Tiled-qt on the left looks fine, however, as does chromium.
    Xorg.log here:
    [ 13.396]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 13.396] X Protocol Version 11, Revision 0
    [ 13.396] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 13.396] Current Operating System: Linux laite-arch 3.10.2-1-ARCH #1 SMP PREEMPT Mon Jul 22 08:47:24 CEST 2013 x86_64
    [ 13.396] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ea8eee16-3368-4aea-baf2-63f8483fc7b2 ro quiet
    [ 13.396] Build Date: 01 July 2013 10:48:42AM
    [ 13.396]
    [ 13.396] Current version of pixman: 0.30.0
    [ 13.396] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 13.396] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 13.396] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 26 17:41:33 2013
    [ 13.538] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 13.538] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 13.812] (==) No Layout section. Using the first Screen section.
    [ 13.812] (==) No screen section available. Using defaults.
    [ 13.812] (**) |-->Screen "Default Screen Section" (0)
    [ 13.813] (**) | |-->Monitor "<default monitor>"
    [ 13.813] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 13.813] (==) Automatically adding devices
    [ 13.813] (==) Automatically enabling devices
    [ 13.813] (==) Automatically adding GPU devices
    [ 14.042] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 14.261] Entry deleted from font path.
    [ 14.495] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 14.495] Entry deleted from font path.
    [ 14.495] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 14.495] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 14.495] Entry deleted from font path.
    [ 14.495] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 14.495] (**) FontPath set to:
    /usr/share/fonts/local,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 14.495] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 14.495] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 14.509] (II) Loader magic: 0x7fdc20
    [ 14.509] (II) Module ABI versions:
    [ 14.509] X.Org ANSI C Emulation: 0.4
    [ 14.509] X.Org Video Driver: 14.1
    [ 14.509] X.Org XInput driver : 19.1
    [ 14.509] X.Org Server Extension : 7.0
    [ 14.510] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 14.513] (--) PCI:*(0:2:0:0) 1002:94b3:174b:1170 rev 0, Mem @ 0xd0000000/268435456, 0xfbfe0000/65536, I/O @ 0x0000e800/256, BIOS @ 0x????????/131072
    [ 14.513] Initializing built-in extension Generic Event Extension
    [ 14.513] Initializing built-in extension SHAPE
    [ 14.513] Initializing built-in extension MIT-SHM
    [ 14.513] Initializing built-in extension XInputExtension
    [ 14.513] Initializing built-in extension XTEST
    [ 14.513] Initializing built-in extension BIG-REQUESTS
    [ 14.513] Initializing built-in extension SYNC
    [ 14.513] Initializing built-in extension XKEYBOARD
    [ 14.513] Initializing built-in extension XC-MISC
    [ 14.513] Initializing built-in extension SECURITY
    [ 14.513] Initializing built-in extension XINERAMA
    [ 14.513] Initializing built-in extension XFIXES
    [ 14.513] Initializing built-in extension RENDER
    [ 14.513] Initializing built-in extension RANDR
    [ 14.513] Initializing built-in extension COMPOSITE
    [ 14.513] Initializing built-in extension DAMAGE
    [ 14.513] Initializing built-in extension MIT-SCREEN-SAVER
    [ 14.513] Initializing built-in extension DOUBLE-BUFFER
    [ 14.513] Initializing built-in extension RECORD
    [ 14.513] Initializing built-in extension DPMS
    [ 14.514] Initializing built-in extension X-Resource
    [ 14.514] Initializing built-in extension XVideo
    [ 14.514] Initializing built-in extension XVideo-MotionCompensation
    [ 14.514] Initializing built-in extension XFree86-VidModeExtension
    [ 14.514] Initializing built-in extension XFree86-DGA
    [ 14.514] Initializing built-in extension XFree86-DRI
    [ 14.514] Initializing built-in extension DRI2
    [ 14.514] (II) "glx" will be loaded by default.
    [ 14.514] (II) LoadModule: "dri2"
    [ 14.514] (II) Module "dri2" already built-in
    [ 14.514] (II) LoadModule: "glamoregl"
    [ 14.724] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 16.917] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 16.917] compiled for 1.14.0, module version = 0.5.0
    [ 16.917] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.917] (II) LoadModule: "glx"
    [ 16.917] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 17.116] (II) Module glx: vendor="X.Org Foundation"
    [ 17.116] compiled for 1.14.2, module version = 1.0.0
    [ 17.116] ABI class: X.Org Server Extension, version 7.0
    [ 17.116] (==) AIGLX enabled
    [ 17.117] Loading extension GLX
    [ 17.117] (==) Matched ati as autoconfigured driver 0
    [ 17.117] (==) Matched ati as autoconfigured driver 1
    [ 17.117] (==) Matched vesa as autoconfigured driver 2
    [ 17.117] (==) Matched modesetting as autoconfigured driver 3
    [ 17.117] (==) Matched fbdev as autoconfigured driver 4
    [ 17.117] (==) Assigned the driver to the xf86ConfigLayout
    [ 17.117] (II) LoadModule: "ati"
    [ 17.117] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 17.162] (II) Module ati: vendor="X.Org Foundation"
    [ 17.162] compiled for 1.14.0, module version = 7.1.0
    [ 17.162] Module class: X.Org Video Driver
    [ 17.162] ABI class: X.Org Video Driver, version 14.1
    [ 17.162] (II) LoadModule: "radeon"
    [ 17.162] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 17.266] (II) Module radeon: vendor="X.Org Foundation"
    [ 17.266] compiled for 1.14.0, module version = 7.1.0
    [ 17.266] Module class: X.Org Video Driver
    [ 17.266] ABI class: X.Org Video Driver, version 14.1
    [ 17.266] (II) LoadModule: "vesa"
    [ 17.281] (WW) Warning, couldn't open module vesa
    [ 17.281] (II) UnloadModule: "vesa"
    [ 17.281] (II) Unloading vesa
    [ 17.281] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 17.281] (II) LoadModule: "modesetting"
    [ 17.281] (WW) Warning, couldn't open module modesetting
    [ 17.281] (II) UnloadModule: "modesetting"
    [ 17.281] (II) Unloading modesetting
    [ 17.281] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 17.281] (II) LoadModule: "fbdev"
    [ 17.282] (WW) Warning, couldn't open module fbdev
    [ 17.282] (II) UnloadModule: "fbdev"
    [ 17.282] (II) Unloading fbdev
    [ 17.282] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 17.282] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 17.292] (++) using VT number 7
    [ 17.307] (II) [KMS] Kernel modesetting enabled.
    [ 17.307] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 17.307] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 17.307] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 17.307] (==) RADEON(0): Default visual is TrueColor
    [ 17.307] (==) RADEON(0): RGB weight 888
    [ 17.307] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 17.307] (--) RADEON(0): Chipset: "ATI Radeon HD 4770" (ChipID = 0x94b3)
    [ 17.307] (II) Loading sub module "dri2"
    [ 17.307] (II) LoadModule: "dri2"
    [ 17.307] (II) Module "dri2" already built-in
    [ 17.307] (II) Loading sub module "exa"
    [ 17.307] (II) LoadModule: "exa"
    [ 17.308] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 17.350] (II) Module exa: vendor="X.Org Foundation"
    [ 17.350] compiled for 1.14.2, module version = 2.6.0
    [ 17.350] ABI class: X.Org Video Driver, version 14.1
    [ 17.350] (II) RADEON(0): KMS Color Tiling: enabled
    [ 17.350] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 17.350] (II) RADEON(0): KMS Pageflipping: enabled
    [ 17.350] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 17.370] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 17.390] (II) RADEON(0): Output DIN has no monitor section
    [ 17.421] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 17.440] (II) RADEON(0): EDID for output DVI-0
    [ 17.460] (II) RADEON(0): EDID for output DIN
    [ 17.491] (II) RADEON(0): EDID for output DVI-1
    [ 17.491] (II) RADEON(0): Manufacturer: BNQ Model: 7841 Serial#: 21573
    [ 17.491] (II) RADEON(0): Year: 2009 Week: 38
    [ 17.491] (II) RADEON(0): EDID Version: 1.3
    [ 17.491] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 17.491] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 17.491] (II) RADEON(0): Max Image Size [cm]: horiz.: 53 vert.: 29
    [ 17.491] (II) RADEON(0): Gamma: 2.20
    [ 17.491] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 17.491] (II) RADEON(0): Default color space is primary color space
    [ 17.491] (II) RADEON(0): First detailed timing is preferred mode
    [ 17.491] (II) RADEON(0): redX: 0.649 redY: 0.338 greenX: 0.289 greenY: 0.609
    [ 17.491] (II) RADEON(0): blueX: 0.146 blueY: 0.070 whiteX: 0.313 whiteY: 0.329
    [ 17.491] (II) RADEON(0): Supported established timings:
    [ 17.491] (II) RADEON(0): 720x400@70Hz
    [ 17.491] (II) RADEON(0): 640x480@60Hz
    [ 17.491] (II) RADEON(0): 640x480@75Hz
    [ 17.491] (II) RADEON(0): 800x600@60Hz
    [ 17.491] (II) RADEON(0): 800x600@75Hz
    [ 17.491] (II) RADEON(0): 832x624@75Hz
    [ 17.491] (II) RADEON(0): 1024x768@60Hz
    [ 17.491] (II) RADEON(0): 1024x768@75Hz
    [ 17.491] (II) RADEON(0): 1280x1024@75Hz
    [ 17.491] (II) RADEON(0): 1152x864@75Hz
    [ 17.491] (II) RADEON(0): Manufacturer's mask: 0
    [ 17.491] (II) RADEON(0): Supported standard timings:
    [ 17.491] (II) RADEON(0): #0: hsize: 1152 vsize 720 refresh: 60 vid: 113
    [ 17.491] (II) RADEON(0): #1: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 17.491] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 17.491] (II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 17.491] (II) RADEON(0): #4: hsize: 1600 vsize 900 refresh: 60 vid: 49321
    [ 17.491] (II) RADEON(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 17.491] (II) RADEON(0): #6: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 17.491] (II) RADEON(0): Supported detailed timing:
    [ 17.491] (II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 17.491] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 17.491] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 17.491] (II) RADEON(0): Serial No: F9904610SL000
    [ 17.491] (II) RADEON(0): Ranges: V min: 50 V max: 76 Hz, H min: 24 H max: 83 kHz, PixClock max 175 MHz
    [ 17.491] (II) RADEON(0): Monitor name: BenQ G2420HDB
    [ 17.491] (II) RADEON(0): EDID (in hex):
    [ 17.491] (II) RADEON(0): 00ffffffffffff0009d1417845540000
    [ 17.491] (II) RADEON(0): 261301030e351d782e6085a6564a9c25
    [ 17.491] (II) RADEON(0): 125054a56b80710081c081408180a9c0
    [ 17.491] (II) RADEON(0): b300d1c00101023a801871382d40582c
    [ 17.491] (II) RADEON(0): 4500dd0c1100001e000000ff00463939
    [ 17.491] (II) RADEON(0): 3034363130534c303030000000fd0032
    [ 17.491] (II) RADEON(0): 4c185311000a202020202020000000fc
    [ 17.491] (II) RADEON(0): 0042656e512047323432304844420076
    [ 17.491] (II) RADEON(0): Printing probed modes for output DVI-1
    [ 17.491] (II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 17.491] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 17.492] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 17.492] (II) RADEON(0): Modeline "1152x720"x60.0 67.28 1152 1208 1328 1504 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 17.492] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 17.492] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 17.492] (II) RADEON(0): Output DVI-0 disconnected
    [ 17.492] (II) RADEON(0): Output DIN disconnected
    [ 17.492] (II) RADEON(0): Output DVI-1 connected
    [ 17.492] (II) RADEON(0): Using exact sizes for initial modes
    [ 17.492] (II) RADEON(0): Output DVI-1 using initial mode 1920x1080
    [ 17.492] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 17.492] (II) RADEON(0): mem size init: gart size :1fdee000 vram size: s:20000000 visible:1f7d7000
    [ 17.492] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 17.492] (==) RADEON(0): DPI set to (96, 96)
    [ 17.492] (II) Loading sub module "fb"
    [ 17.492] (II) LoadModule: "fb"
    [ 17.492] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 17.567] (II) Module fb: vendor="X.Org Foundation"
    [ 17.567] compiled for 1.14.2, module version = 1.0.0
    [ 17.567] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 17.567] (II) Loading sub module "ramdac"
    [ 17.567] (II) LoadModule: "ramdac"
    [ 17.567] (II) Module "ramdac" already built-in
    [ 17.567] (--) Depth 24 pixmap format is 32 bpp
    [ 17.568] (II) RADEON(0): [DRI2] Setup complete
    [ 17.568] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 17.568] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 17.568] (II) RADEON(0): Front buffer size: 8160K
    [ 17.568] (II) RADEON(0): VRAM usage limit set to 456966K
    [ 17.569] (==) RADEON(0): Backing store disabled
    [ 17.569] (II) RADEON(0): Direct rendering enabled
    [ 17.569] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 17.569] (II) EXA(0): Driver registered support for the following operations:
    [ 17.569] (II) Solid
    [ 17.570] (II) Copy
    [ 17.570] (II) Composite (RENDER acceleration)
    [ 17.570] (II) UploadToScreen
    [ 17.570] (II) DownloadFromScreen
    [ 17.570] (II) RADEON(0): Acceleration enabled
    [ 17.570] (==) RADEON(0): DPMS enabled
    [ 17.570] (==) RADEON(0): Silken mouse enabled
    [ 17.570] (II) RADEON(0): Set up textured video
    [ 17.570] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 17.570] (II) RADEON(0): [XvMC] Extension initialized.
    [ 17.570] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 17.571] (--) RandR disabled
    [ 20.549] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 20.549] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 20.549] (II) AIGLX: enabled GLX_ARB_create_context
    [ 20.549] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 20.549] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 20.549] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 20.549] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 20.552] (II) AIGLX: Loaded and initialized r600
    [ 20.552] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 20.553] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 21.889] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 21.889] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 21.889] (II) LoadModule: "evdev"
    [ 21.890] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 21.925] (II) Module evdev: vendor="X.Org Foundation"
    [ 21.925] compiled for 1.14.2, module version = 2.8.1
    [ 21.925] Module class: X.Org XInput Driver
    [ 21.925] ABI class: X.Org XInput driver, version 19.1
    [ 21.925] (II) Using input driver 'evdev' for 'Power Button'
    [ 21.925] (**) Power Button: always reports core events
    [ 21.925] (**) evdev: Power Button: Device: "/dev/input/event5"
    [ 21.925] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 21.925] (--) evdev: Power Button: Found keys
    [ 21.925] (II) evdev: Power Button: Configuring as keyboard
    [ 21.925] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
    [ 21.925] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 21.925] (**) Option "xkb_rules" "evdev"
    [ 21.925] (**) Option "xkb_model" "pc104"
    [ 21.925] (**) Option "xkb_layout" "fi"
    [ 21.925] (**) Option "xkb_options" "ctrl:nocaps"
    [ 22.026] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 22.027] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 22.027] (II) Using input driver 'evdev' for 'Power Button'
    [ 22.027] (**) Power Button: always reports core events
    [ 22.027] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 22.027] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 22.027] (--) evdev: Power Button: Found keys
    [ 22.027] (II) evdev: Power Button: Configuring as keyboard
    [ 22.027] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 22.027] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 22.027] (**) Option "xkb_rules" "evdev"
    [ 22.027] (**) Option "xkb_model" "pc104"
    [ 22.027] (**) Option "xkb_layout" "fi"
    [ 22.027] (**) Option "xkb_options" "ctrl:nocaps"
    [ 22.028] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v6.0 (/dev/input/event1)
    [ 22.028] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: Applying InputClass "evdev keyboard catchall"
    [ 22.028] (II) Using input driver 'evdev' for 'Microsoft Microsoft® 2.4GHz Transceiver v6.0'
    [ 22.028] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: always reports core events
    [ 22.028] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Device: "/dev/input/event1"
    [ 22.028] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Vendor 0x45e Product 0x745
    [ 22.028] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found keys
    [ 22.028] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Configuring as keyboard
    [ 22.029] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb3/3-5/3-5:1.0/input/input1/event1"
    [ 22.029] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v6.0" (type: KEYBOARD, id 8)
    [ 22.029] (**) Option "xkb_rules" "evdev"
    [ 22.029] (**) Option "xkb_model" "pc104"
    [ 22.029] (**) Option "xkb_layout" "fi"
    [ 22.029] (**) Option "xkb_options" "ctrl:nocaps"
    [ 22.030] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v6.0 (/dev/input/event2)
    [ 22.030] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: Applying InputClass "evdev pointer catchall"
    [ 22.030] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: Applying InputClass "evdev keyboard catchall"
    [ 22.030] (II) Using input driver 'evdev' for 'Microsoft Microsoft® 2.4GHz Transceiver v6.0'
    [ 22.030] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: always reports core events
    [ 22.030] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Device: "/dev/input/event2"
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Vendor 0x45e Product 0x745
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found 9 mouse buttons
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found scroll wheel(s)
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found relative axes
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found x and y relative axes
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found absolute axes
    [ 22.030] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Forcing absolute x/y axes to exist.
    [ 22.030] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found keys
    [ 22.030] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Configuring as mouse
    [ 22.030] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Configuring as keyboard
    [ 22.030] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Adding scrollwheel support
    [ 22.031] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: YAxisMapping: buttons 4 and 5
    [ 22.031] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 22.031] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb3/3-5/3-5:1.1/input/input2/event2"
    [ 22.031] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v6.0" (type: KEYBOARD, id 9)
    [ 22.031] (**) Option "xkb_rules" "evdev"
    [ 22.031] (**) Option "xkb_model" "pc104"
    [ 22.031] (**) Option "xkb_layout" "fi"
    [ 22.031] (**) Option "xkb_options" "ctrl:nocaps"
    [ 22.031] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: initialized for relative axes.
    [ 22.031] (WW) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: ignoring absolute axes.
    [ 22.032] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) keeping acceleration scheme 1
    [ 22.032] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration profile 0
    [ 22.032] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration factor: 2.000
    [ 22.032] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration threshold: 4
    [ 22.033] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v6.0 (/dev/input/mouse1)
    [ 22.033] (II) No input driver specified, ignoring this device.
    [ 22.033] (II) This device may have been added with another device file.
    [ 22.033] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v6.0 (/dev/input/event3)
    [ 22.033] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: Applying InputClass "evdev keyboard catchall"
    [ 22.033] (II) Using input driver 'evdev' for 'Microsoft Microsoft® 2.4GHz Transceiver v6.0'
    [ 22.033] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: always reports core events
    [ 22.033] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Device: "/dev/input/event3"
    [ 22.033] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Using mtdev for this device
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Vendor 0x45e Product 0x745
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found 1 mouse buttons
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found scroll wheel(s)
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found relative axes
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found absolute axes
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found absolute multitouch axes
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found x and y absolute axes
    [ 22.033] (--) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Found keys
    [ 22.033] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Forcing relative x/y axes to exist.
    [ 22.033] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Configuring as mouse
    [ 22.033] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Configuring as keyboard
    [ 22.033] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: Adding scrollwheel support
    [ 22.033] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: YAxisMapping: buttons 4 and 5
    [ 22.033] (**) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 22.033] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb3/3-5/3-5:1.2/input/input3/event3"
    [ 22.033] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v6.0" (type: KEYBOARD, id 10)
    [ 22.033] (**) Option "xkb_rules" "evdev"
    [ 22.033] (**) Option "xkb_model" "pc104"
    [ 22.033] (**) Option "xkb_layout" "fi"
    [ 22.033] (**) Option "xkb_options" "ctrl:nocaps"
    [ 22.034] (II) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: initialized for relative axes.
    [ 22.034] (WW) evdev: Microsoft Microsoft® 2.4GHz Transceiver v6.0: ignoring absolute axes.
    [ 22.034] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) keeping acceleration scheme 1
    [ 22.034] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration profile 0
    [ 22.034] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration factor: 2.000
    [ 22.034] (**) Microsoft Microsoft® 2.4GHz Transceiver v6.0: (accel) acceleration threshold: 4
    [ 22.034] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v6.0 (/dev/input/js0)
    [ 22.034] (II) No input driver specified, ignoring this device.
    [ 22.034] (II) This device may have been added with another device file.
    [ 22.034] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event0)
    [ 22.034] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 22.034] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 22.034] (**) Logitech USB Receiver: always reports core events
    [ 22.034] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event0"
    [ 22.034] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc51b
    [ 22.034] (--) evdev: Logitech USB Receiver: Found 12 mouse buttons
    [ 22.034] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 22.034] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 22.034] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 22.034] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 22.034] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 22.034] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 22.034] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 22.034] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb4/4-1/4-1:1.0/input/input0/event0"
    [ 22.034] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 11)
    [ 22.034] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 22.034] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 22.034] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 22.034] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 22.034] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 22.035] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 22.035] (II) config/udev: Adding input device HDA NVidia Line Out (/dev/input/event7)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 22.035] (II) config/udev: Adding input device HDA NVidia Line (/dev/input/event8)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 22.035] (II) config/udev: Adding input device HDA NVidia Rear Mic (/dev/input/event9)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 22.035] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 22.035] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event10)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 22.035] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
    [ 22.035] (II) No input driver specified, ignoring this device.
    [ 22.035] (II) This device may have been added with another device file.
    [ 30.896] (II) AIGLX: Suspending AIGLX clients for VT switch
    I'm using open drivers for my Radeon HD4770.
    Same problem persists with all gtk themes.
    Last edited by laite (2013-07-26 16:28:49)

    I have the same problem too. the same graphic card model.
    I temporarily change the driver to 'vesa' or 'fbdev' to make it render right.
    but it may cause the resolution smaller.
    any suggestion ?
    pacman -Qi linux
    Name : linux
    Version : 3.10.2-1
    Description : The Linux kernel and modules
    Architecture : x86_64
    URL : http://www.kernel.org/
    Licenses : GPL2
    Groups : base
    Provides : kernel26=3.10.2
    Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
    Optional Deps : crda: to set the correct wireless channels of your country
    [installed]
    Required By : None
    Optional For : None
    Conflicts With : kernel26
    Replaces : kernel26
    Installed Size : 66453.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Mon Jul 22 14:52:41 2013
    Install Date : Fri Jul 26 00:23:13 2013
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : Signature
    pacman -Qi pango
    Name : pango
    Version : 1.34.1-1
    Description : A library for layout and rendering of text
    Architecture : x86_64
    URL : http://www.pango.org/
    Licenses : LGPL
    Groups : None
    Provides : None
    Depends On : libthai cairo libxft harfbuzz
    Optional Deps : None
    Required By : cogl gst-plugins-base gstreamer0.10-base-plugins gtk2 gtk3
    librsvg libtiger pangomm
    Optional For : None
    Conflicts With : None
    Replaces : None
    Installed Size : 3682.00 KiB
    Packager : Jan Alexander Steffens (heftig) <[email protected]>
    Build Date : Tue May 14 01:42:00 2013
    Install Date : Fri Jul 26 01:08:47 2013
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Validated By : Signature
    Last edited by Ashur (2013-07-26 17:48:58)

  • [SOLVED] Xorg terminates after system upgrade

    Im lost... Please someone help me.
    I upgraded old installation of Arch yesterday (about one year old) and now Xorg fails to load up. I don't really know where to look for issues... I think its graphic card but I'm not sure...
    Xorg isnt showing much errors...
    # cat /var/log/Xorg.0.log | grep EE
    [ 3948.803] Current Operating System: Linux bowman 3.13.6-1-ARCH #1 SMP PREEMPT Fri Mar 7 22:30:23 CET 2014 i686
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3949.345] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3951.026] (EE) Server terminated successfully (0). Closing log file.
    Warnings:
    # cat /var/log/Xorg.0.log | grep WW
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 4198.590] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 4198.590] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 4198.590] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 4198.590] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 4198.590] (WW) Disabling Keyboard0
    [ 4198.590] (WW) Disabling Mouse0
    [ 4199.631] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 4199.632] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 4199.940] (WW) evdev: SIGMACHIP USB Keyboard: ignoring absolute axes.
    Log part related to "Unable to support custom viewPortOut" line:
    [ 4199.226] (**) NVIDIA(0): Enabling 2D acceleration
    [ 4199.626] (II) NVIDIA(GPU-0): Display (LG Electronics W1946 (CRT-1)) does not support NVIDIA
    [ 4199.626] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 4199.628] (II) NVIDIA(0): NVIDIA GPU GeForce 6200 (NV44) at PCI:1:0:0 (GPU-0)
    [ 4199.628] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 4199.628] (--) NVIDIA(0): VideoBIOS: 05.44.a2.14.ff
    [ 4199.628] (II) NVIDIA(0): Detected AGP rate: 8X
    [ 4199.628] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 4199.628] (--) NVIDIA(0): Valid display device(s) on GeForce 6200 at PCI:1:0:0
    [ 4199.628] (--) NVIDIA(0): CRT-0
    [ 4199.628] (--) NVIDIA(0): LG Electronics W1946 (CRT-1) (connected)
    [ 4199.628] (--) NVIDIA(0): DFP-0
    [ 4199.628] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 4199.628] (--) NVIDIA(0): LG Electronics W1946 (CRT-1): 400.0 MHz maximum pixel clock
    [ 4199.628] (--) NVIDIA(0): DFP-0: 155.0 MHz maximum pixel clock
    [ 4199.628] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
    [ 4199.628] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 4199.628] (**) NVIDIA(0): device LG Electronics W1946 (CRT-1) (Using EDID
    [ 4199.628] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 4199.629] (==) NVIDIA(0):
    [ 4199.629] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 4199.629] (==) NVIDIA(0): will be used as the requested mode.
    [ 4199.629] (==) NVIDIA(0):
    [ 4199.629] (II) NVIDIA(0): Validated MetaModes:
    [ 4199.629] (II) NVIDIA(0): "CRT-1:nvidia-auto-select"
    [ 4199.629] (**) NVIDIA(0): Virtual screen size configured to be 1360 x 768
    [ 4199.631] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 4199.632] (WW) NVIDIA(0): Unable to support custom viewPortOut 1360 x 765 +0 +1
    [ 4199.633] (--) NVIDIA(0): DPI set to (84, 84); computed from "UseEdidDpi" X config
    [ 4199.633] (--) NVIDIA(0): option
    [ 4199.633] (--) Depth 24 pixmap format is 32 bpp
    [ 4199.646] (II) NVIDIA(0): Setting mode "CRT-1:nvidia-auto-select"
    Xorg.0.log: http://pastebin.com/rJDxeXnV
    Graphic card is: (lspci -v)
    01:00.0 VGA compatible controller: NVIDIA Corporation NV44A [GeForce 6200] (rev a1) (prog-if 00 [VGA controller])
    Subsystem: Gigabyte Technology Co., Ltd Device 3504
    Flags: bus master, 66MHz, medium devsel, latency 248, IRQ 16
    Memory at f8000000 (32-bit, non-prefetchable) [size=16M]
    Memory at e0000000 (32-bit, prefetchable) [size=256M]
    Memory at f9000000 (32-bit, non-prefetchable) [size=16M]
    [virtual] Expansion ROM at fa000000 [disabled] [size=128K]
    Capabilities: [60] Power Management version 2
    Capabilities: [44] AGP version 3.0
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    Packages installed:
    # pacman -Qs nvidia -q
    libcl
    libvdpau
    nvidia-304xx
    nvidia-304xx-libgl
    nvidia-304xx-utils
    opencl-nvidia-304xx
    xorg.conf has been automatically generated with nvidia-xconfig:
    (only "        Virtual     1360 768" has been added)
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 304.119 (buildmeister@swio-display-x64-rhel04-01) Fri Jan 17 10:35:08 PST 2014
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Virtual 1360 768
    EndSubSection
    EndSection
    Any ideas?
    [EDIT]
    Very important facts:
    startx fails when running xfce4 or awesome
    startx runs on root (with strange x environment) with no problems
    Last edited by marzecki (2014-03-12 13:52:49)

    For me it occurred after this update..... I dunno why , but openbox wouldn't load, kde would, however
    Guess it's due to the mesa update and using the legacy nvida-173xx driver
    [2014-03-12 21:17] [PACMAN] Running 'pacman -Syu'
    [2014-03-12 21:17] [PACMAN] synchronizing package lists
    [2014-03-12 21:17] [PACMAN] starting full system upgrade
    [2014-03-12 21:24] [PACMAN] upgraded bluez-libs (5.15-1 -> 5.16-1)
    [2014-03-12 21:24] [PACMAN] upgraded calligra-filters (2.8.0-1 -> 2.8.0-2)
    [2014-03-12 21:24] [PACMAN] upgraded calligra-libs (2.8.0-1 -> 2.8.0-2)
    [2014-03-12 21:24] [PACMAN] upgraded calligra-plugins (2.8.0-1 -> 2.8.0-2)
    [2014-03-12 21:25] [PACMAN] upgraded calligra-krita (2.8.0-1 -> 2.8.0-2)
    [2014-03-12 21:25] [PACMAN] upgraded libpng (1.6.9-1 -> 1.6.10-1)
    [2014-03-12 21:25] [PACMAN] upgraded mjpegtools (2.0.0-4 -> 2.1.0-1)
    [2014-03-12 21:25] [PACMAN] upgraded cinelerra-cv (1:2.2-19 -> 1:2.2-20)
    [2014-03-12 21:25] [PACMAN] upgraded systemd (210-2 -> 210-3)
    [2014-03-12 21:25] [PACMAN] upgraded mesa (10.0.3-1 -> 10.1.0-2)
    [2014-03-12 21:25] [PACMAN] upgraded libevdev (0.6-1 -> 1.0.1-1)
    [2014-03-12 21:25] [PACMAN] upgraded clutter (1.16.4-1 -> 1.16.4-3)
    [2014-03-12 21:25] [PACMAN] upgraded libcups (1.7.1-3 -> 1.7.1-4)
    [2014-03-12 21:25] [PACMAN] upgraded cups-filters (1.0.46-1 -> 1.0.48-1)
    [2014-03-12 21:25] [PACMAN] upgraded cups (1.7.1-3 -> 1.7.1-4)
    [2014-03-12 21:25] [PACMAN] upgraded dhcpcd (6.2.1-1 -> 6.3.1-1)
    [2014-03-12 21:25] [PACMAN] upgraded dosfstools (3.0.25-1 -> 3.0.26-1)
    [2014-03-12 21:25] [PACMAN] upgraded freetype2 (2.5.2-1 -> 2.5.3-1)
    [2014-03-12 21:25] [PACMAN] upgraded geoip-database (20140108-1 -> 20140304-1)
    [2014-03-12 21:25] [PACMAN] upgraded gst-plugins-bad (1.2.3-1 -> 1.2.3-2)
    [2014-03-12 21:25] [PACMAN] upgraded gstreamer0.10-bad (0.10.23-7 -> 0.10.23-8)
    [2014-03-12 21:25] [PACMAN] upgraded gstreamer0.10-bad-plugins (0.10.23-7 -> 0.10.23-8)
    [2014-03-12 21:26] [PACMAN] upgraded kdenlive (0.9.6-3 -> 0.9.6-4)
    [2014-03-12 21:26] [PACMAN] upgraded keyutils (1.5.8-1 -> 1.5.9-1)
    [2014-03-12 21:26] [PACMAN] upgraded libnl (3.2.23-1 -> 3.2.24-1)
    [2014-03-12 21:26] [PACMAN] upgraded libssh (0.5.5-2 -> 0.5.5-3)
    [2014-03-12 21:26] [PACMAN] upgraded libva (1.2.1-1 -> 1.2.1-2)
    [2014-03-12 21:26] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-03-12 21:26] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ARCH
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ARCH
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-03-12 21:26] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:26] [PACMAN] upgraded linux (3.13.5-1 -> 3.13.6-1)
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'default'
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck.img
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ck
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck.img
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'fallback'
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck-fallback.img -S autodetect
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ck
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck-fallback.img
    [2014-03-12 21:27] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:27] [ALPM-SCRIPTLET]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Thank you for using http://repo-ck.com/ for your linux-ck package needs.
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Note that the following CPU optimized packages are or could be available to you:
    [2014-03-12 21:27] [ALPM-SCRIPTLET] AMD : barcelona, bobcat, bulldozer, kx, k10, piledriver
    [2014-03-12 21:27] [ALPM-SCRIPTLET] Intel : atom, core2, haswell, ivybridge, nehalem, p4, pentm, sandybridge
    [2014-03-12 21:27] [ALPM-SCRIPTLET]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Search via group name: pacman -Sg ck-ivybridge
    [2014-03-12 21:27] [ALPM-SCRIPTLET]
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> Post in the repo support thread if package group is unavailable for your architecture:
    [2014-03-12 21:27] [ALPM-SCRIPTLET] >>> https://bbs.archlinux.org/viewtopic.php?id=111715
    [2014-03-12 21:27] [PACMAN] upgraded linux-ck-p4 (3.13.5-2 -> 3.13.6-1)
    [2014-03-12 21:27] [PACMAN] upgraded linux-headers (3.13.5-1 -> 3.13.6-1)
    [2014-03-12 21:28] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-03-12 21:28] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'default'
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts.img
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Starting build: 3.10.33-1-lts
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-lts.img
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'fallback'
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts-fallback.img -S autodetect
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Starting build: 3.10.33-1-lts
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-lts-fallback.img
    [2014-03-12 21:28] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-12 21:28] [PACMAN] upgraded linux-lts (3.10.32-1 -> 3.10.33-1)
    [2014-03-12 21:28] [PACMAN] upgraded linux-lts-headers (3.10.32-1 -> 3.10.33-1)
    [2014-03-12 21:28] [PACMAN] upgraded python (3.3.4-1 -> 3.3.5-1)
    [2014-03-12 21:29] [PACMAN] upgraded mono (3.2.3-2 -> 3.2.8-1)
    [2014-03-12 21:29] [PACMAN] upgraded ruby (2.1.0-2 -> 2.1.1-1)
    [2014-03-12 21:29] [PACMAN] upgraded s-nail (14.6.1-1 -> 14.6.2-1)
    [2014-03-12 21:29] [PACMAN] upgraded sqlite (3.8.3.1-1 -> 3.8.4.1-1)
    [2014-03-12 21:29] [PACMAN] upgraded swt (4.3-1 -> 4.3.2-1)
    [2014-03-12 21:29] [PACMAN] upgraded systemd-sysvcompat (210-2 -> 210-3)
    [2014-03-12 21:29] [PACMAN] upgraded tzdata (2013i-1 -> 2014a-1)
    [2014-03-12 21:29] [PACMAN] upgraded wine (1.7.13-1 -> 1.7.14-1)
    [2014-03-12 21:29] [PACMAN] upgraded wireshark-cli (1.10.5-4 -> 1.10.6-1)
    [2014-03-12 21:30] [PACMAN] upgraded wireshark-gtk (1.10.5-4 -> 1.10.6-1)
    [2014-03-12 21:30] [PACMAN] upgraded xbmc (12.3-11 -> 12.3-12)
    [2014-03-12 21:30] [PACMAN] upgraded xterm (302-1 -> 303-1)
    Thanks a bunch
    Last edited by 1LordAnubis (2014-03-13 02:39:41)

  • [SOLVED] Black screen after kdm upgrade

    Hi,
    I just did a pacman -Syu and at the next reboot when xdm was supposed to appear the only thing I got was a black screen. It's pitch-black as if turned off, not as if the background was black (laptop lcd)
    If I just enter my password blindly, it enters KDE and launches all the normal processes so it appears to be just a the screen being black.
    This is what I upgraded:
    [2014-09-29 00:13] [PACMAN] Running 'pacman -Syu'
    [2014-09-29 00:13] [PACMAN] synchronizing package lists
    [2014-09-29 00:13] [PACMAN] starting full system upgrade
    [2014-09-29 00:15] [PACMAN] upgraded ansible (1.7.1-3 -> 1.7.2-1)
    [2014-09-29 00:15] [PACMAN] upgraded grantlee-qt4 (0.5.0-2 -> 0.5.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded qtwebkit (2.3.3-2 -> 2.3.4-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdelibs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdepimlibs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libbaloo4 (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4-akonadi (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4 (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4-widgets (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded bash (4.3.024-2 -> 4.3.026-1)
    [2014-09-29 00:15] [PACMAN] upgraded curl (7.38.0-1 -> 7.38.0-2)
    [2014-09-29 00:15] [PACMAN] upgraded e2fsprogs (1.42.11-1 -> 1.42.12-1)
    [2014-09-29 00:15] [PACMAN] upgraded flac (1.3.0-3 -> 1.3.0-4)
    [2014-09-29 00:15] [PACMAN] upgraded ghostscript (9.14-1 -> 9.15-1)
    [2014-09-29 00:15] [PACMAN] upgraded p11-kit (0.20.2-1 -> 0.20.7-3)
    [2014-09-29 00:15] [PACMAN] upgraded gnutls (3.3.8-1 -> 3.3.8-2)
    [2014-09-29 00:15] [PACMAN] upgraded groff (1.22.2-6 -> 1.22.2-7)
    [2014-09-29 00:15] [PACMAN] upgraded kde-base-artwork (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kde-wallpapers (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded oxygen-icons (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-runtime (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-lib (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-dolphin (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-katepart (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kdepasswd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kdialog (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-keditbookmarks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kfind (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konqueror (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konq-plugins (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konsole (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kwrite (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-plasma (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdepim-runtime (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [ALPM] warning: /usr/share/config/kdm/kdmrc installed as /usr/share/config/kdm/kdmrc.pacnew
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-workspace (4.11.11-2 -> 4.11.12-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeedu-marble (4.14.0-1 -> 4.14.1-2)
    [2014-09-29 00:15] [PACMAN] upgraded libkipi (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkdcraw (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-gwenview (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kamera (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kcolorchooser (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kgamma (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kolourpaint (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kruler (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-ksnapshot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-mobipocket (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkexiv2 (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler-qt4 (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-okular (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkcddb (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkcompactdisc (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-audiocd-kio (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-dragonplayer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-juk (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-kmix (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-kscd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-mplayerthumbs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdenetwork-kopete (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bball (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-binary-clock (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-blackboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bookmarks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bubblemon (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-calculator (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-charselect (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-libs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-comic (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-community (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-dict (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-eyes (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-fifteenpuzzle (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-filewatcher (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-frame (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-fuzzy-clock (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-icontasks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-incomingmsg (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-kimpanel (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-knowledgebase (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-kolourpicker (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-konqprofiles (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-konsoleprofiles (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-lancelot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-leavenote (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-life (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-luna (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-magnifique (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-mediaplayer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-microblog (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-news (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-notes (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-nowplaying (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-paste (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-pastebin (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-plasmaboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-previewer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-qalculate (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-rememberthemilk (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-rssnow (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-showdashboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-showdesktop (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-social-news (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-spellcheck (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-systemloadviewer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-timer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-unitconverter (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-weather (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-weatherstation (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-webslice (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-containments (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-audioplayercontrol (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-browserhistory (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-characters (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-contacts (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-converter (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-datetime (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-dictionary (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-events (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdesdk-kate (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-katesessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-konquerorsessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-konsolesessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-kopete (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-mediawiki (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-spellchecker (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-translator (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-youtube (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-mandelbrot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-marble (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-pattern (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-potd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-qmlwallpapers (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-virus (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-weather (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-ark (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-filelight (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kcalc (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kcharselect (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kdf (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kfloppy (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kgpg (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kremotecontrol (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-ktimer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kwalletmanager (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-print-manager (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-superkaramba (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-sweeper (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded less (458-1 -> 468-1)
    [2014-09-29 00:15] [PACMAN] upgraded libmariadbclient (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded libpipeline (1.3.0-1 -> 1.3.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libreoffice-fresh (4.3.1-1 -> 4.3.2-1)
    [2014-09-29 00:15] [PACMAN] upgraded man-pages (3.72-1 -> 3.73-1)
    [2014-09-29 00:15] [PACMAN] upgraded mariadb-clients (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded mariadb (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler-glib (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded python2-setuptools (1:5.8-1 -> 1:6.0.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded sdl (1.2.15-6 -> 1.2.15-7)
    [2014-09-29 00:15] [PACMAN] upgraded sudo (1.8.10.p3-1 -> 1.8.11-1)
    [2014-09-29 00:15] [PACMAN] upgraded tzdata (2014g-1 -> 2014h-1)
    I have substituted xdmrc for kdmrc.pacnew to no avail. I have reinstalled nvidia and kdebase-workspace. kdm.log:
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:26:11 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(590) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(584)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(584)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi: cannot connect to X server :0
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:55:05 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(611) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(605)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(605)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:58:58 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(669) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(663)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(663)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:59:51 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(707) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(701)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(701)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:05:09 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(770) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(764)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(764)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:11:34 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(813) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(807)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(807)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:16:56 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(859) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(853)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(853)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:31:24 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(1018) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(1012)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(1012)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    drkonqi: cannot connect to X server :0
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:34:39 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(501) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(495)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(495)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:39:30 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(641) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(635)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(635)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:41:32 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(724) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(718)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(718)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:48:30 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(479) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(473)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(473)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    journalctl -b:
    -- Logs begin at Sun 2014-07-13 21:42:22 BST, end at Mon 2014-09-29 01:48:53 BST. --
    Sep 29 01:48:24 feynman systemd-journal[193]: Runtime journal is using 8.0M (max allowed 393.9M, trying to leave 590.8M free of 3.8G available → current limit 393.9M).
    Sep 29 01:48:24 feynman systemd-journal[193]: Runtime journal is using 8.0M (max allowed 393.9M, trying to leave 590.8M free of 3.8G available → current limit 393.9M).
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpuset
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpu
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpuacct
    Sep 29 01:48:24 feynman kernel: Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014
    Sep 29 01:48:24 feynman kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Sep 29 01:48:24 feynman kernel: e820: BIOS-provided physical RAM map:
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000b96e1fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b96e2000-0x00000000b96e8fff] ACPI NVS
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b96e9000-0x00000000b9ec6fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b9ec7000-0x00000000ba151fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000ba152000-0x00000000c9586fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9587000-0x00000000c9a63fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9a64000-0x00000000c9a97fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9a98000-0x00000000c9b7dfff] ACPI NVS
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9b7e000-0x00000000c9ffefff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9fff000-0x00000000c9ffffff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000cd000000-0x00000000cf1fffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000100000000-0x000000022fdfffff] usable
    Sep 29 01:48:24 feynman kernel: NX (Execute Disable) protection: active
    Sep 29 01:48:24 feynman kernel: SMBIOS 2.7 present.
    Sep 29 01:48:24 feynman kernel: DMI: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    Sep 29 01:48:24 feynman kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Sep 29 01:48:24 feynman kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Sep 29 01:48:24 feynman kernel: AGP: No AGP bridge found
    Sep 29 01:48:24 feynman kernel: e820: last_pfn = 0x22fe00 max_arch_pfn = 0x400000000
    Sep 29 01:48:24 feynman kernel: MTRR default type: uncachable
    Sep 29 01:48:24 feynman kernel: MTRR fixed ranges enabled:
    Sep 29 01:48:24 feynman kernel: 00000-9FFFF write-back
    Sep 29 01:48:24 feynman kernel: A0000-BFFFF uncachable
    Sep 29 01:48:24 feynman kernel: C0000-CFFFF write-protect
    Sep 29 01:48:24 feynman kernel: D0000-E7FFF uncachable
    Sep 29 01:48:24 feynman kernel: E8000-FFFFF write-protect
    Sep 29 01:48:24 feynman kernel: MTRR variable ranges enabled:
    Sep 29 01:48:24 feynman kernel: 0 base 0000000000 mask 7E00000000 write-back
    Sep 29 01:48:24 feynman kernel: 1 base 0200000000 mask 7FE0000000 write-back
    Sep 29 01:48:24 feynman kernel: 2 base 0220000000 mask 7FF0000000 write-back
    Sep 29 01:48:24 feynman kernel: 3 base 00E0000000 mask 7FE0000000 uncachable
    Sep 29 01:48:24 feynman kernel: 4 base 00D0000000 mask 7FF0000000 uncachable
    Sep 29 01:48:24 feynman kernel: 5 base 00CE000000 mask 7FFE000000 uncachable
    Sep 29 01:48:24 feynman kernel: 6 base 00CD000000 mask 7FFF000000 uncachable
    Sep 29 01:48:24 feynman kernel: 7 base 022FE00000 mask 7FFFE00000 uncachable
    Sep 29 01:48:24 feynman kernel: 8 disabled
    Sep 29 01:48:24 feynman kernel: 9 disabled
    Sep 29 01:48:24 feynman kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Sep 29 01:48:24 feynman kernel: e820: update [mem 0xcd000000-0xffffffff] usable ==> reserved
    Sep 29 01:48:24 feynman kernel: e820: last_pfn = 0xca000 max_arch_pfn = 0x400000000
    Sep 29 01:48:24 feynman kernel: found SMP MP-table at [mem 0x000fd7f0-0x000fd7ff] mapped at [ffff8800000fd7f0]
    Sep 29 01:48:24 feynman kernel: Scanning 1 areas for low memory corruption
    Sep 29 01:48:24 feynman kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Sep 29 01:48:24 feynman kernel: Using GB pages for direct mapping
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x00000000-0x000fffff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b23000, 0x01b23fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: BRK [0x01b24000, 0x01b24fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: BRK [0x01b25000, 0x01b25fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x22fc00000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x22fc00000-0x22fdfffff] page 2M
    Sep 29 01:48:24 feynman kernel: BRK [0x01b26000, 0x01b26fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x22c000000-0x22fbfffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x22c000000-0x22fbfffff] page 2M
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x200000000-0x22bffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x200000000-0x22bffffff] page 2M
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x00100000-0xb96e1fff]
    Sep 29 01:48:24 feynman kernel: [mem 0x00100000-0x001fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0x00200000-0x3fffffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0x40000000-0x7fffffff] page 1G
    Sep 29 01:48:24 feynman kernel: [mem 0x80000000-0xb95fffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xb9600000-0xb96e1fff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xb96e9000-0xb9ec6fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xb96e9000-0xb97fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0xb9800000-0xb9dfffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xb9e00000-0xb9ec6fff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b27000, 0x01b27fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xba152000-0xc9586fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xba152000-0xba1fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0xba200000-0xc93fffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xc9400000-0xc9586fff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b28000, 0x01b28fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xc9a64000-0xc9a97fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xc9a64000-0xc9a97fff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xc9fff000-0xc9ffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0xc9fff000-0xc9ffffff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x100000000-0x1ffffffff] page 1G
    Sep 29 01:48:24 feynman kernel: RAMDISK: [mem 0x3790c000-0x37c7dfff]
    Sep 29 01:48:24 feynman kernel: ACPI: Early table checksum verification disabled
    Sep 29 01:48:24 feynman kernel: ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    Sep 29 01:48:24 feynman kernel: ACPI: XSDT 0x00000000C9B20088 000094 (v01 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: FACP 0x00000000C9B2D340 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: DSDT 0x00000000C9B201B8 00D182 (v02 ALASKA A M I 00000021 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: FACS 0x00000000C9B7C080 000040
    Sep 29 01:48:24 feynman kernel: ACPI: APIC 0x00000000C9B2D450 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: FPDT 0x00000000C9B2D4E8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: ASF! 0x00000000C9B2D530 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2D5D8 000F92 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2E570 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2EAB0 000AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: MCFG 0x00000000C9B2F588 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    Sep 29 01:48:24 feynman kernel: ACPI: HPET 0x00000000C9B2F5C8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2F600 000315 (v01 SataRe SataTabl 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2F918 001640 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B30F58 000E64 (v01 SgRef SgPeg 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: DMAR 0x00000000C9B31DC0 0000B8 (v01 INTEL HSW 00000001 INTL 00000001)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B31E78 0015B3 (v01 OptRef OptTabl 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: Local APIC address 0xfee00000
    Sep 29 01:48:24 feynman kernel: No NUMA configuration found
    Sep 29 01:48:24 feynman kernel: Faking a node at [mem 0x0000000000000000-0x000000022fdfffff]
    Sep 29 01:48:24 feynman kernel: Initmem setup node 0 [mem 0x00000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: NODE_DATA [mem 0x22fdf5000-0x22fdf9fff]
    Sep 29 01:48:24 feynman kernel: [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880227400000-ffff88022f3fffff] on node 0
    Sep 29 01:48:24 feynman kernel: Zone ranges:
    Sep 29 01:48:24 feynman kernel: DMA [mem 0x00001000-0x00ffffff]
    Sep 29 01:48:24 feynman kernel: DMA32 [mem 0x01000000-0xffffffff]
    Sep 29 01:48:24 feynman kernel: Normal [mem 0x100000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: Movable zone start for each node
    Sep 29 01:48:24 feynman kernel: Early memory node ranges
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x00001000-0x0009cfff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x00100000-0xb96e1fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xb96e9000-0xb9ec6fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xba152000-0xc9586fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xc9a64000-0xc9a97fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xc9fff000-0xc9ffffff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x100000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: On node 0 totalpages: 2068678
    Sep 29 01:48:24 feynman kernel: DMA zone: 64 pages used for memmap
    Sep 29 01:48:24 feynman kernel: DMA zone: 21 pages reserved
    Sep 29 01:48:24 feynman kernel: DMA zone: 3996 pages, LIFO batch:0
    Sep 29 01:48:24 feynman kernel: DMA32 zone: 12813 pages used for memmap
    Sep 29 01:48:24 feynman kernel: DMA32 zone: 820010 pages, LIFO batch:31
    Sep 29 01:48:24 feynman kernel: Normal zone: 19448 pages used for memmap
    Sep 29 01:48:24 feynman kernel: Normal zone: 1244672 pages, LIFO batch:31
    Sep 29 01:48:24 feynman kernel: Reserving Intel graphics stolen memory at 0xcd200000-0xcf1fffff
    Sep 29 01:48:24 feynman kernel: ACPI: PM-Timer IO Port: 0x1808
    Sep 29 01:48:24 feynman kernel: ACPI: Local APIC address 0xfee00000
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Sep 29 01:48:24 feynman kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Sep 29 01:48:24 feynman kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Sep 29 01:48:24 feynman kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Sep 29 01:48:24 feynman kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ0 used by override.
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ2 used by override.
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ9 used by override.
    Sep 29 01:48:24 feynman kernel: Using ACPI (MADT) for SMP configuration information
    Sep 29 01:48:24 feynman kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Sep 29 01:48:24 feynman kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    Sep 29 01:48:24 feynman kernel: nr_irqs_gsi: 40
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xb96e2000-0xb96e8fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xb9ec7000-0xba151fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9587000-0xc9a63fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9a98000-0xc9b7dfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9b7e000-0xc9ffefff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xca000000-0xccffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xcd000000-0xcf1fffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xcf200000-0xf7ffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    Sep 29 01:48:24 feynman kernel: e820: [mem 0xcf200000-0xf7ffffff] available for PCI devices
    Sep 29 01:48:24 feynman kernel: Booting paravirtualized kernel on bare hardware
    Sep 29 01:48:24 feynman kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Sep 29 01:48:24 feynman kernel: PERCPU: Embedded 29 pages/cpu @ffff88022fa00000 s86784 r8192 d23808 u262144
    Sep 29 01:48:24 feynman kernel: pcpu-alloc: s86784 r8192 d23808 u262144 alloc=1*2097152
    Sep 29 01:48:24 feynman kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Sep 29 01:48:24 feynman kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2036332
    Sep 29 01:48:24 feynman kernel: Policy zone: Normal
    Sep 29 01:48:24 feynman kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Sep 29 01:48:24 feynman kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Sep 29 01:48:24 feynman kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Sep 29 01:48:24 feynman kernel: AGP: Checking aperture...
    Sep 29 01:48:24 feynman kernel: AGP: No AGP bridge found
    Sep 29 01:48:24 feynman kernel: Calgary: detecting Calgary via BIOS EBDA area
    Sep 29 01:48:24 feynman kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Sep 29 01:48:24 feynman kernel: Memory: 8061324K/8274712K available (5335K kernel code, 887K rwdata, 1688K rodata, 1128K init, 1164K bss, 213388K reserved)
    Sep 29 01:48:24 feynman kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Sep 29 01:48:24 feynman kernel: Preemptible hierarchical RCU implementation.
    Sep 29 01:48:24 feynman kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Sep 29 01:48:24 feynman kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Sep 29 01:48:24 feynman kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Sep 29 01:48:24 feynman kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    Sep 29 01:48:24 feynman kernel: NR_IRQS:8448 nr_irqs:744 16
    Sep 29 01:48:24 feynman kernel: Console: colour dummy device 80x25
    Sep 29 01:48:24 feynman kernel: console [tty0] enabled
    Sep 29 01:48:24 feynman kernel: allocated 33554432 bytes of page_cgroup
    Sep 29 01:48:24 feynman kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Sep 29 01:48:24 feynman kernel: hpet clockevent registered
    Sep 29 01:48:24 feynman kernel: tsc: Fast TSC calibration using PIT
    Sep 29 01:48:24 feynman kernel: tsc: Detected 2694.062 MHz processor
    Sep 29 01:48:24 feynman kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5390.62 BogoMIPS (lpj=8980206)
    Sep 29 01:48:24 feynman kernel: pid_max: default: 32768 minimum: 301
    Sep 29 01:48:24 feynman kernel: ACPI: Core revision 20140424
    Sep 29 01:48:24 feynman kernel: ACPI: All ACPI Tables successfully acquired
    Sep 29 01:48:24 feynman kernel: Security Framework initialized
    Sep 29 01:48:24 feynman kernel: Yama: becoming mindful.
    Sep 29 01:48:24 feynman kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Sep 29 01:48:24 feynman kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Sep 29 01:48:24 feynman kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    Sep 29 01:48:24 feynman kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys memory
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys devices
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys freezer
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys net_cls
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys blkio
    Sep 29 01:48:24 feynman kernel: CPU: Physical Processor ID: 0
    Sep 29 01:48:24 feynman kernel: CPU: Processor Core ID: 0
    Sep 29 01:48:24 feynman kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Sep 29 01:48:24 feynman kernel: mce: CPU supports 9 MCE banks
    Sep 29 01:48:24 feynman kernel: CPU0: Thermal monitoring enabled (TM1)
    Sep 29 01:48:24 feynman kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    Sep 29 01:48:24 feynman kernel: Freeing SMP alternatives memory: 20K (ffffffff819f9000 - ffffffff819fe000)
    Sep 29 01:48:24 feynman kernel: ftrace: allocating 20438 entries in 80 pages
    Sep 29 01:48:24 feynman kernel: dmar: Host address width 39
    Sep 29 01:48:24 feynman kernel: dmar: DRHD base: 0x000000fed90000 flags: 0x0
    Sep 29 01:48:24 feynman kernel: dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
    Sep 29 01:48:24 feynman kernel: dmar: DRHD base: 0x000000fed91000 flags: 0x1
    Sep 29 01:48:24 feynman kernel: dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
    Sep 29 01:48:24 feynman kernel: dmar: RMRR base: 0x000000c97a6000 end: 0x000000c97b2fff
    Sep 29 01:48:24 feynman kernel: dmar: RMRR base: 0x000000cd000000 end: 0x000000cf1fffff
    Sep 29 01:48:24 feynman kernel: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
    Sep 29 01:48:24 feynman kernel: HPET id 0 under DRHD base 0xfed91000
    Sep 29 01:48:24 feynman kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Sep 29 01:48:24 feynman kernel: Enabled IRQ remapping in x2apic mode
    Sep 29 01:48:24 feynman kernel: Enabling x2apic
    Sep 29 01:48:24 feynman kernel: Enabled x2apic
    Sep 29 01:48:24 feynman kernel: Switched APIC routing to cluster x2apic.
    Sep 29 01:48:24 feynman kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Sep 29 01:48:24 feynman kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4800MQ CPU @ 2.70GHz (fam: 06, model: 3c, stepping: 03)
    Sep 29 01:48:24 feynman kernel: TSC deadline timer enabled
    Sep 29 01:48:24 feynman kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    Sep 29 01:48:24 feynman kernel: ... version: 3
    Sep 29 01:48:24 feynman kernel: ... bit width: 48
    Sep 29 01:48:24 feynman kernel: ... generic registers: 4
    Sep 29 01:48:24 feynman kernel: ... value mask: 0000ffffffffffff
    Sep 29 01:48:24 feynman kernel: ... max period: 0000ffffffffffff
    Sep 29 01:48:24 feynman kernel: ... fixed-purpose events: 3
    Sep 29 01:48:24 feynman kernel: ... event mask: 000000070000000f
    Sep 29 01:48:24 feynman kernel: x86: Booting SMP configuration:
    Sep 29 01:48:24 feynman kernel: .... node #0, CPUs: #1
    Sep 29 01:48:24 feynman kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Sep 29 01:48:24 feynman kernel: #2 #3 #4 #5 #6 #7
    Sep 29 01:48:24 feynman kernel: x86: Booted up 1 node, 8 CPUs
    Sep 29 01:48:24 feynman kernel: smpboot: Total of 8 processors activated (43122.03 BogoMIPS)
    Sep 29 01:48:24 feynman kernel: devtmpfs: initialized
    Sep 29 01:48:24 feynman kernel: PM: Registering ACPI NVS region [mem 0xb96e2000-0xb96e8fff] (28672 bytes)
    Sep 29 01:48:24 feynman kernel: PM: Registering ACPI NVS region [mem 0xc9a98000-0xc9b7dfff] (942080 bytes)
    Sep 29 01:48:24 feynman kernel: pinctrl core: initialized pinctrl subsystem
    Sep 29 01:48:24 feynman kernel: RTC time: 0:48:18, date: 09/29/14
    Sep 29 01:48:24 feynman kernel: NET: Registered protocol family 16
    Sep 29 01:48:24 feynman kernel: cpuidle: using governor ladder
    Sep 29 01:48:24 feynman kernel: cpuidle: using governor menu
    Sep 29 01:48:24 feynman kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Sep 29 01:48:24 feynman kernel: ACPI: bus type PCI registered
    Sep 29 01:48:24 feynman kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Sep 29 01:48:24 feynman kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Sep 29 01:48:24 feynman kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Sep 29 01:48:24 feynman kernel: PCI: Using configuration type 1 for base access
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Module Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Processor Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Sep 29 01:48:24 feynman kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF88022380B000 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF880223889000 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF880223869600 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Interpreter enabled
    Sep 29 01:48:24 feynman kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    Sep 29 01:48:24 feynman kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    Sep 29 01:48:24 feynman kernel: ACPI: (supports S0 S3 S4 S5)
    Sep 29 01:48:24 feynman kernel: ACPI: Using IOAPIC for interrupt routing
    Sep 29 01:48:24 feynman kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Sep 29 01:48:24 feynman kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    Sep 29 01:48:24 feynman kernel: PCI host bridge to bus 0000:00
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0xcf200000-0xfeafffff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    Sep 29 01:48:24 feynman kernel: pci 0000:00:03.0: reg 0x10: [mem 0xf7a14000-0xf7a17fff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf7a1f000-0xf7a1f00f 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xf7a1c000-0xf7a1c3ff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf7a1b000-0xf7a1b3ff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.0: [8086:8c4b] type 00 class 0x060100
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x20: [io 0xf

    Hi berbae,
    berbae wrote:That's not what your logs say:
    Can you explain exactly how you start your computer and when you log in as user?
    I may have grabbed that info after restarting the kdm service manually.
    The issue happens on a normal bootup, just by pressing the power button and waiting. :-) To reiterate: a pitch black screen as if the LCD is turned off. The login prompt is there waiting in the dark, if I blindly input my password it starts KDE (I hear the disk and see the processes with
    ps -ef
    The following is the state of my system after pressing ctrl-alt-f1, logging in as root and mounting a pen.
    dmesg and Xorg.0.log look particularly nasty:
    dmesg:
    [ 10.422380] enhanceio: Allocate 20398KB (8B per) mem for 2610944-entry cache (capacity:10238MB, associativity:256, block size:4096 bytes)
    [ 10.422380] sound hdaudioC0D0: autoconfig: line_outs=1 (0x24/0x0/0x0/0x0/0x0) type:speaker
    [ 10.422384] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 10.422385] sound hdaudioC0D0: hp_outs=1 (0x25/0x0/0x0/0x0/0x0)
    [ 10.422386] sound hdaudioC0D0: mono: mono_out=0x0
    [ 10.422387] sound hdaudioC0D0: dig-out=0x2d/0x0
    [ 10.422388] sound hdaudioC0D0: inputs:
    [ 10.422390] sound hdaudioC0D0: Mic=0x2b
    [ 10.422391] sound hdaudioC0D0: Internal Mic=0x29
    [ 10.430634] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card1/input18
    [ 10.430719] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card1/input19
    [ 10.430791] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card1/input20
    [ 10.430997] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
    [ 10.431638] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
    [ 10.617688] enhanceio: Cache metadata loaded from disk with 438613 valid 0 dirty blocks
    [ 10.617691] enhanceio: Setting mode to write through
    [ 10.617890] enhanceio_lru: Initialized 10199 sets in LRU
    [ 10.618160] enhanceio: Cache metadata loaded from disk with 438613 valid 0 dirty blocks
    [ 10.618162] enhanceio: Setting mode to write through
    [ 10.618355] enhanceio_lru: Initialized 10199 sets in LRU
    [ 10.656047] ------------[ cut here ]------------
    [ 10.656053] WARNING: CPU: 3 PID: 352 at fs/proc/generic.c:315 proc_register+0xc0/0x140()
    [ 10.656054] proc_dir_entry 'enhanceio/usr_cache' already registered
    [ 10.656055] Modules linked in: snd_hda_codec_hdmi snd_hda_codec_via snd_hda_codec_generic enhanceio_rand(O) enhanceio_lru(O) enhanceio_fifo(O) enhanceio(O) coretemp hwmon intel_rapl x86_pkg_temp_thermal intel_powerclamp kvm_intel kvm crct10dif_pclmul crc32_pclmul crc32c_intel arc4 iwldvm ghash_clmulni_intel snd_hda_intel snd_hda_controller aesni_intel joydev mousedev i915 led_class mac80211 aes_x86_64 snd_hda_codec lrw ecb gf128mul btusb i2c_i801 iwlwifi glue_helper iTCO_wdt snd_hwdep drm_kms_helper bluetooth drm iTCO_vendor_support snd_pcm cfg80211 6lowpan_iphc intel_gtt mei_me i2c_algo_bit ablk_helper i2c_core rfkill cryptd r8169 snd_timer rtsx_pci_ms memstick evdev mii mxm_wmi snd mei mac_hid soundcore shpchp lpc_ich microcode psmouse serio_raw tpm_infineon tpm_tis tpm video thermal processor
    [ 10.656084] pcspkr battery button ac wmi usbip_host(C) usbip_core(C) ext4 crc16 mbcache jbd2 sd_mod sr_mod cdrom crc_t10dif crct10dif_common rtsx_pci_sdmmc atkbd libps2 mmc_core ehci_pci xhci_hcd ehci_hcd ahci libahci libata usbcore scsi_mod rtsx_pci usb_common i8042 serio
    [ 10.656096] CPU: 3 PID: 352 Comm: eio_cli Tainted: G C O 3.16.3-1-ARCH #1
    [ 10.656097] Hardware name: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    [ 10.656098] 0000000000000000 00000000319638dd ffff88021eda7bf0 ffffffff8152b3bc
    [ 10.656100] ffff88021eda7c38 ffff88021eda7c28 ffffffff8106e45d ffff880222f323c0
    [ 10.656101] ffff88021f552df3 ffff88021f552d80 ffff880222e94f00 ffff880222f323c0
    [ 10.656102] Call Trace:
    [ 10.656106] [<ffffffff8152b3bc>] dump_stack+0x4d/0x6f
    [ 10.656109] [<ffffffff8106e45d>] warn_slowpath_common+0x7d/0xa0
    [ 10.656110] [<ffffffff8106e4dc>] warn_slowpath_fmt+0x5c/0x80
    [ 10.656112] [<ffffffff8122c1e4>] ? proc_alloc_inum+0x54/0xe0
    [ 10.656114] [<ffffffff8122c330>] proc_register+0xc0/0x140
    [ 10.656115] [<ffffffff8122c4b2>] proc_mkdir_data+0x52/0x80
    [ 10.656117] [<ffffffff8122c515>] proc_mkdir+0x15/0x20
    [ 10.656120] [<ffffffffa07ae25e>] eio_procfs_ctr+0x2e/0x220 [enhanceio]
    [ 10.656122] [<ffffffffa07a4cb0>] eio_cache_create+0x1270/0x1990 [enhanceio]
    [ 10.656125] [<ffffffff8118a1ae>] ? map_vm_area+0x2e/0x40
    [ 10.656126] [<ffffffff8118b4a0>] ? __vmalloc_node_range+0x200/0x290
    [ 10.656128] [<ffffffffa07a57c6>] ? eio_ioctl+0x2b6/0x310 [enhanceio]
    [ 10.656130] [<ffffffffa07a57ef>] eio_ioctl+0x2df/0x310 [enhanceio]
    [ 10.656133] [<ffffffff811d4af0>] do_vfs_ioctl+0x2d0/0x4b0
    [ 10.656135] [<ffffffff811d4d51>] SyS_ioctl+0x81/0xa0
    [ 10.656137] [<ffffffff81531129>] system_call_fastpath+0x16/0x1b
    [ 10.656138] ---[ end trace ba917aef9e72708f ]---
    [ 10.656143] sysctl duplicate entry: /dev/enhanceio/usr_cache//zero_stats
    [ 10.656172] CPU: 3 PID: 352 Comm: eio_cli Tainted: G WC O 3.16.3-1-ARCH #1
    [ 10.656172] Hardware name: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    [ 10.656173] 0000000000000000 00000000319638dd ffff88021eda7c30 ffffffff8152b3bc
    [ 10.656174] 0000000000000000 ffff88021eda7c98 ffffffff81232da5 0000000000000000
    [ 10.656175] ffff88021eda7c70 ffff88021f552900 ffff88022309e300 0000000000000000
    [ 10.656177] Call Trace:
    [ 10.656178] [<ffffffff8152b3bc>] dump_stack+0x4d/0x6f
    [ 10.656180] [<ffffffff81232da5>] __register_sysctl_table+0x405/0x660
    [ 10.656181] [<ffffffff812333ed>] __register_sysctl_paths+0x1dd/0x200
    [ 10.656184] [<ffffffff811a5fba>] ? __kmalloc+0x18a/0x1c0
    [ 10.656186] [<ffffffff8123344f>] register_sysctl_table+0x1f/0x30
    [ 10.656188] [<ffffffffa07ae3bf>] eio_procfs_ctr+0x18f/0x220 [enhanceio]
    [ 10.656189] [<ffffffffa07a4cb0>] eio_cache_create+0x1270/0x1990 [enhanceio]
    [ 10.656190] [<ffffffff8118a1ae>] ? map_vm_area+0x2e/0x40
    [ 10.656192] [<ffffffff8118b4a0>] ? __vmalloc_node_range+0x200/0x290
    [ 10.656193] [<ffffffffa07a57c6>] ? eio_ioctl+0x2b6/0x310 [enhanceio]
    [ 10.656195] [<ffffffffa07a57ef>] eio_ioctl+0x2df/0x310 [enhanceio]
    [ 10.656197] [<ffffffff811d4af0>] do_vfs_ioctl+0x2d0/0x4b0
    [ 10.656198] [<ffffffff811d4d51>] SyS_ioctl+0x81/0xa0
    [ 10.656200] [<ffffffff81531129>] system_call_fastpath+0x16/0x1b
    [ 10.656201] Failed to register common sysctl
    [ 10.659094] cache_create: Device is already cached.
    [ 11.478308] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 11.485810] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
    [ 11.518234] nvidia: module license 'NVIDIA' taints kernel.
    [ 11.518238] Disabling lock debugging due to kernel taint
    [ 11.525193] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 1
    [ 11.525197] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 340.32 Tue Aug 5 20:58:26 PDT 2014
    [ 11.526152] vgaarb: this pci device is not a vga device
    [ 11.526429] nvidia 0000:01:00.0: irq 52 for MSI/MSI-X
    [ 11.528294] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528340] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528369] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528403] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528431] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528459] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528490] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528525] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.550137] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 11.557694] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
    [ 11.625420] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    [ 11.628649] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 12.148668] cfg80211: Calling CRDA to update world regulatory domain
    [ 12.183699] wlp3s0: authenticate with c4:04:15:e5:ba:60
    [ 12.202127] wlp3s0: send auth to c4:04:15:e5:ba:60 (try 1/3)
    [ 12.204424] wlp3s0: authenticated
    [ 12.205180] wlp3s0: associate with c4:04:15:e5:ba:60 (try 1/3)
    [ 12.210701] wlp3s0: RX AssocResp from c4:04:15:e5:ba:60 (capab=0x11 status=0 aid=2)
    [ 12.213604] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
    [ 12.213637] wlp3s0: associated
    [ 12.213651] cfg80211: Calling CRDA to update world regulatory domain
    [ 13.284862] vgaarb: this pci device is not a vga device
    [ 187.535119] usb 3-2: new high-speed USB device number 3 using xhci_hcd
    [ 187.860846] usb 3-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
    [ 187.860858] usb 3-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
    [ 188.275010] usb-storage 3-2:1.0: USB Mass Storage device detected
    [ 188.275105] scsi6 : usb-storage 3-2:1.0
    [ 188.275160] usbcore: registered new interface driver usb-storage
    [ 188.276007] usbcore: registered new interface driver uas
    [ 189.278473] scsi 6:0:0:0: Direct-Access Kingston DataTraveler 112 1.00 PQ: 0 ANSI: 2
    [ 189.278903] sd 6:0:0:0: [sdc] 7557704 512-byte logical blocks: (3.86 GB/3.60 GiB)
    [ 189.279055] sd 6:0:0:0: [sdc] Write Protect is off
    [ 189.279058] sd 6:0:0:0: [sdc] Mode Sense: 03 00 00 00
    [ 189.279200] sd 6:0:0:0: [sdc] No Caching mode page found
    [ 189.280334] sd 6:0:0:0: [sdc] Assuming drive cache: write through
    [ 189.283005] sdc: sdc1
    [ 189.283774] sd 6:0:0:0: [sdc] Attached SCSI removable disk
    Xorg.0.log
    [ 11.389]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 11.389] X Protocol Version 11, Revision 0
    [ 11.389] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 11.389] Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    [ 11.389] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    [ 11.389] Build Date: 21 September 2014 10:53:13AM
    [ 11.389]
    [ 11.389] Current version of pixman: 0.32.6
    [ 11.389] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 11.389] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 11.389] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 22:49:40 2014
    [ 11.402] (==) Using config file: "/etc/X11/xorg.conf"
    [ 11.402] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 11.411] (==) ServerLayout "layout"
    [ 11.411] (**) |-->Screen "nvidia" (0)
    [ 11.411] (**) | |-->Monitor "<default monitor>"
    [ 11.411] (**) | |-->Device "nvidia"
    [ 11.411] (==) No monitor specified for screen "nvidia".
    Using a default monitor configuration.
    [ 11.411] (**) |-->Inactive Device "intel"
    [ 11.411] (==) Automatically adding devices
    [ 11.411] (==) Automatically enabling devices
    [ 11.411] (==) Automatically adding GPU devices
    [ 11.414] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 11.414] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 11.414] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 11.414] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 11.414] (II) Loader magic: 0x818d80
    [ 11.414] (II) Module ABI versions:
    [ 11.414] X.Org ANSI C Emulation: 0.4
    [ 11.414] X.Org Video Driver: 18.0
    [ 11.414] X.Org XInput driver : 21.0
    [ 11.414] X.Org Server Extension : 8.0
    [ 11.414] (EE) systemd-logind: failed to get session: PID 410 does not belong to any known session
    [ 11.415] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 11.415] (--) PCI:*(0:0:2:0) 8086:0416:1558:3537 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 11.415] (--) PCI: (0:1:0:0) 10de:11e2:1558:3537 rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 11.415] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 11.416] (II) LoadModule: "glx"
    [ 11.417] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.425] (II) Module glx: vendor="X.Org Foundation"
    [ 11.425] compiled for 1.16.1, module version = 1.0.0
    [ 11.425] ABI class: X.Org Server Extension, version 8.0
    [ 11.425] (==) AIGLX enabled
    [ 11.425] (II) LoadModule: "nvidia"
    [ 11.425] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.432] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.432] compiled for 4.0.2, module version = 1.0.0
    [ 11.432] Module class: X.Org Video Driver
    [ 11.433] (II) LoadModule: "modesetting"
    [ 11.433] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 11.433] (II) Module modesetting: vendor="X.Org Foundation"
    [ 11.433] compiled for 1.16.0, module version = 0.9.0
    [ 11.433] Module class: X.Org Video Driver
    [ 11.433] ABI class: X.Org Video Driver, version 18.0
    [ 11.433] (II) NVIDIA dlloader X Driver 340.32 Tue Aug 5 20:13:04 PDT 2014
    [ 11.433] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.434] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 11.434] (++) using VT number 7
    [ 11.438] (II) Loading sub module "fb"
    [ 11.438] (II) LoadModule: "fb"
    [ 11.439] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.440] (II) Module fb: vendor="X.Org Foundation"
    [ 11.440] compiled for 1.16.1, module version = 1.0.0
    [ 11.440] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.440] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 11.440] (II) Loading sub module "wfb"
    [ 11.440] (II) LoadModule: "wfb"
    [ 11.440] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.441] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.441] compiled for 1.16.1, module version = 1.0.0
    [ 11.441] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.441] (II) Loading sub module "ramdac"
    [ 11.441] (II) LoadModule: "ramdac"
    [ 11.441] (II) Module "ramdac" already built-in
    [ 11.514] (II) modesetting(1): using drv /dev/dri/card0
    [ 11.514] (II) modesetting(G0): using drv /dev/dri/card0
    [ 11.514] (EE) Screen 1 deleted because of no matching config section.
    [ 11.514] (II) UnloadModule: "modesetting"
    [ 11.514] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "nvidia" for depth/fbbpp 24/32
    [ 11.514] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.514] (==) NVIDIA(0): RGB weight 888
    [ 11.514] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.514] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.514] (**) NVIDIA(0): Option "UseEdidDpi" "FALSE"
    [ 11.514] (**) NVIDIA(0): Option "DPI" "106 x 106"
    [ 11.514] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
    [ 11.514] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.514] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    [ 11.514] (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    [ 11.514] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    [ 11.514] (EE) NVIDIA(0): you continue to encounter problems, Please try
    [ 11.514] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    [ 12.009] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 12.010] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 765M (GK106) at PCI:1:0:0 (GPU-0)
    [ 12.010] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 12.010] (--) NVIDIA(0): VideoBIOS: 80.06.51.00.17
    [ 12.010] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 12.010] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 765M at PCI:1:0:0
    [ 12.010] (--) NVIDIA(0): none
    [ 12.010] (II) NVIDIA(0): Validated MetaModes:
    [ 12.010] (II) NVIDIA(0): "NULL"
    [ 12.010] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
    [ 12.010] (**) NVIDIA(0): DPI set to (106, 106); computed from "DPI" X config option
    [ 12.010] (==) modesetting(G0): Depth 24, (==) framebuffer bpp 32
    [ 12.010] (==) modesetting(G0): RGB weight 888
    [ 12.010] (==) modesetting(G0): Default visual is TrueColor
    [ 12.010] (II) modesetting(G0): ShadowFB: preferred YES, enabled YES
    [ 12.011] (II) modesetting(G0): Output eDP-1-0 has no monitor section
    [ 12.012] (II) modesetting(G0): Output VGA-1-0 has no monitor section
    [ 12.012] (II) modesetting(G0): Output HDMI-1-0 has no monitor section
    [ 12.013] (II) modesetting(G0): EDID for output eDP-1-0
    [ 12.013] (II) modesetting(G0): Manufacturer: CMO Model: 1720 Serial#: 0
    [ 12.013] (II) modesetting(G0): Year: 2011 Week: 2
    [ 12.013] (II) modesetting(G0): EDID Version: 1.4
    [ 12.013] (II) modesetting(G0): Digital Display Input
    [ 12.013] (II) modesetting(G0): 6 bits per channel
    [ 12.013] (II) modesetting(G0): Digital interface is undefined
    [ 12.013] (II) modesetting(G0): Max Image Size [cm]: horiz.: 38 vert.: 21
    [ 12.013] (II) modesetting(G0): Gamma: 2.20
    [ 12.013] (II) modesetting(G0): No DPMS capabilities specified
    [ 12.013] (II) modesetting(G0): Supported color encodings: RGB 4:4:4
    [ 12.013] (II) modesetting(G0): First detailed timing is preferred mode
    [ 12.013] (II) modesetting(G0): Preferred mode is native pixel format and refresh rate
    [ 12.013] (II) modesetting(G0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.610
    [ 12.013] (II) modesetting(G0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 12.013] (II) modesetting(G0): Manufacturer's mask: 0
    [ 12.013] (II) modesetting(G0): Supported detailed timing:
    [ 12.013] (II) modesetting(G0): clock: 140.5 MHz Image Size: 382 x 215 mm
    [ 12.013] (II) modesetting(G0): h_active: 1920 h_sync: 1972 h_sync_end 2007 h_blank_end 2094 h_border: 0
    [ 12.013] (II) modesetting(G0): v_active: 1080 v_sync: 1083 v_sync_end 1089 v_blanking: 1118 v_border: 0
    [ 12.013] (II) modesetting(G0): Supported detailed timing:
    [ 12.013] (II) modesetting(G0): clock: 92.5 MHz Image Size: 382 x 215 mm
    [ 12.013] (II) modesetting(G0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 12.013] (II) modesetting(G0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 12.013] (II) modesetting(G0): HC9GKÄ173HGE
    [ 12.013] (II) modesetting(G0): Unknown vendor-specific block 0
    [ 12.013] (II) modesetting(G0): EDID (in hex):
    [ 12.013] (II) modesetting(G0): 00ffffffffffff000daf201700000000
    [ 12.013] (II) modesetting(G0): 021501049026157802ed95a3544c9c26
    [ 12.013] (II) modesetting(G0): 0f505400000001010101010101010101
    [ 12.013] (II) modesetting(G0): 010101010101e13680ae703826403423
    [ 12.013] (II) modesetting(G0): 36007ed71000001a1d2480a070381f40
    [ 12.013] (II) modesetting(G0): 302035007ed71000001a000000fe0048
    [ 12.013] (II) modesetting(G0): 4339474b803137334847450a00000000
    [ 12.013] (II) modesetting(G0): 000041319e0000000002010a202000f3
    [ 12.013] (II) modesetting(G0): Printing probed modes for output eDP-1-0
    [ 12.013] (II) modesetting(G0): Modeline "1920x1080"x60.0 140.49 1920 1972 2007 2094 1080 1083 1089 1118 +hsync -vsync (67.1 kHz eP)
    [ 12.013] (II) modesetting(G0): Modeline "1920x1080"x40.0 92.45 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (44.4 kHz e)
    [ 12.013] (II) modesetting(G0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
    [ 12.014] (II) modesetting(G0): EDID for output VGA-1-0
    [ 12.014] (II) modesetting(G0): EDID for output HDMI-1-0
    [ 12.014] (II) modesetting(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 12.014] (==) modesetting(G0): DPI set to (96, 96)
    [ 12.014] (II) Loading sub module "fb"
    [ 12.014] (II) LoadModule: "fb"
    [ 12.014] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 12.014] (II) Module fb: vendor="X.Org Foundation"
    [ 12.014] compiled for 1.16.1, module version = 1.0.0
    [ 12.014] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12.014] (II) Loading sub module "shadow"
    [ 12.014] (II) LoadModule: "shadow"
    [ 12.014] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 12.015] (II) Module shadow: vendor="X.Org Foundation"
    [ 12.015] compiled for 1.16.1, module version = 1.1.0
    [ 12.015] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12.015] (--) Depth 24 pixmap format is 32 bpp
    [ 12.017] (==) modesetting(G0): Backing store enabled
    [ 12.017] (==) modesetting(G0): Silken mouse enabled
    [ 12.017] (II) modesetting(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 12.017] (==) modesetting(G0): DPMS enabled
    [ 12.017] (WW) modesetting(G0): Option "AllowEmptyInitialConfiguration" is not used
    [ 13.273] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 13.273] (II) NVIDIA: access.
    [ 13.277] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 13.277] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 13.277] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 13.277] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 13.277] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 13.277] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 13.277] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 13.277] (II) NVIDIA(0): Config Options in the README.
    [ 13.277] (II) NVIDIA(0): Setting mode "NULL"
    [ 13.277] (EE) NVIDIA(0): Failed to initiate mode change.
    [ 13.277] (EE) NVIDIA(0): Failed to complete mode change
    [ 13.287] (II) NVIDIA(0): Built-in logo is bigger than the screen.
    [ 13.291] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 13.291] (==) NVIDIA(0): Backing store enabled
    [ 13.291] (==) NVIDIA(0): Silken mouse enabled
    [ 13.291] (==) NVIDIA(0): DPMS enabled
    [ 13.331] (II) Loading sub module "dri2"
    [ 13.331] (II) LoadModule: "dri2"
    [ 13.331] (II) Module "dri2" already built-in
    [ 13.331] (II) NVIDIA(0): [DRI2] Setup complete
    [ 13.331] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 13.331] (--) RandR disabled
    [ 13.335] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 13.335] (EE) AIGLX: reverting to software rendering
    [ 13.421] (II) AIGLX: Loaded and initialized swrast
    [ 13.421] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 13.421] (II) modesetting(G0): Damage tracking initialized
    [ 13.467] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 13.467] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.467] (II) LoadModule: "evdev"
    [ 13.467] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.469] (II) Module evdev: vendor="X.Org Foundation"
    [ 13.469] compiled for 1.16.0, module version = 2.9.0
    [ 13.469] Module class: X.Org XInput Driver
    [ 13.469] ABI class: X.Org XInput driver, version 21.0
    [ 13.469] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.469] (**) Power Button: always reports core events
    [ 13.469] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 13.470] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 13.470] (--) evdev: Power Button: Found keys
    [ 13.470] (II) evdev: Power Button: Configuring as keyboard
    [ 13.470] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event4"
    [ 13.470] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 13.470] (**) Option "xkb_rules" "evdev"
    [ 13.470] (**) Option "xkb_model" "pc104"
    [ 13.470] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
    [ 13.482] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Video Bus'
    [ 13.482] (**) Video Bus: always reports core events
    [ 13.482] (**) evdev: Video Bus: Device: "/dev/input/event8"
    [ 13.482] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 13.482] (--) evdev: Video Bus: Found keys
    [ 13.482] (II) evdev: Video Bus: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input15/event8"
    [ 13.482] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 13.482] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Video Bus'
    [ 13.482] (**) Video Bus: always reports core events
    [ 13.482] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 13.482] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 13.482] (--) evdev: Video Bus: Found keys
    [ 13.482] (II) evdev: Video Bus: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4f/LNXVIDEO:00/input/input14/event7"
    [ 13.482] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 13.482] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.482] (**) Power Button: always reports core events
    [ 13.482] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 13.482] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 13.482] (--) evdev: Power Button: Found keys
    [ 13.482] (II) evdev: Power Button: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event1"
    [ 13.482] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.483] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 13.483] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 13.483] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 13.483] (**) Sleep Button: always reports core events
    [ 13.483] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 13.483] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 13.483] (--) evdev: Sleep Button: Found keys
    [ 13.483] (II) evdev: Sleep Button: Configuring as keyboard
    [ 13.483] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event2"
    [ 13.483] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
    [ 13.483] (**) Option "xkb_rules" "evdev"
    [ 13.483] (**) Option "xkb_model" "pc104"
    [ 13.483] (**) Option "xkb_layout" "us"
    [ 13.483] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 13.483] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 13.483] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event9)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event10)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event11)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.484] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 13.484] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 13.484] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 13.484] (**) AT Translated Set 2 keyboard: always reports core events
    [ 13.484] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 13.484] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 13.484] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 13.484] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 13.484] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 13.484] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 13.484] (**) Option "xkb_rules" "evdev"
    [ 13.484] (**) Option "xkb_model" "pc104"
    [ 13.484] (**) Option "xkb_layout" "us"
    [ 13.484] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 13.484] (II) LoadModule: "synaptics"
    [ 13.484] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 13.485] (II) Module synaptics: vendor="X.Org Foundation"
    [ 13.485] compiled for 1.16.0, module version = 1.8.1
    [ 13.485] Module class: X.Org XInput Driver
    [ 13.485] ABI class: X.Org XInput driver, version 21.0
    [ 13.485] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 13.485] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 13.485] (**) Option "Device" "/dev/input/event6"
    [ 13.596] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5692 (res 66)
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4680 (res 102)
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 13.596] (**) Option "TapButton1" "1"
    [ 13.596] (**) Option "TapButton2" "2"
    [ 13.596] (**) Option "TapButton3" "3"
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 13.596] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 13.650] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input11/event6"
    [ 13.650] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 13.650] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 13.650] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 13.650] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 13.650] (II) No input driver specified, ignoring this device.
    [ 13.650] (II) This device may have been added with another device file.
    [ 13.668] removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    [ 13.668] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 13.668] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 13.668] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    lspci
    00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller (rev 06)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
    00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
    00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
    00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d5)
    00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
    00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
    00:1f.0 ISA bridge: Intel Corporation HM87 Express LPC Controller (rev 05)
    00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
    00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
    01:00.0 3D controller: NVIDIA Corporation GK106M [GeForce GTX 765M] (rev a1)
    03:00.0 Network controller: Intel Corporation Centrino Wireless-N 135 (rev c4)
    04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5289 (rev 01)
    04:00.2 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0a)
    lspci -vv for the vga and 3d controllers (this is an Optimus laptop):
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller])
    Subsystem: CLEVO/KAPOK Computer Device 3537
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 49
    Region 0: Memory at f7400000 (64-bit, non-prefetchable) [size=4M]
    Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
    Region 4: I/O ports at f000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: fee00018 Data: 0000
    Capabilities: [d0] Power Management version 2
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [a4] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: i915
    Kernel modules: i915
    01:00.0 3D controller: NVIDIA Corporation GK106M [GeForce GTX 765M] (rev a1)
    Subsystem: CLEVO/KAPOK Computer Device 3537
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 52
    Region 0: Memory at f6000000 (32-bit, non-prefetchable) [size=16M]
    Region 1: Memory at e0000000 (64-bit, prefetchable) [size=256M]
    Region 3: Memory at f0000000 (64-bit, prefetchable) [size=32M]
    Region 5: I/O ports at e000 [size=128]
    [virtual] Expansion ROM at f7000000 [disabled] [size=512K]
    Capabilities: [60] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Address: 00000000fee00438 Data: 0000
    Capabilities: [78] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <512ns, L1 <4us
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Range AB, TimeoutDis+, LTR-, OBFF Not Supported
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
    LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
    EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest+
    Capabilities: [b4] Vendor Specific Information: Len=14 <?>
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [128 v1] Power Budgeting <?>
    Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
    Capabilities: [900 v1] #19
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
    EndSection
    Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:PCI address determined earlier"
    # e.g. BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
    EndSection
    Section "Device"
    Identifier "intel"
    Driver "modesetting"
    EndSection
    Section "Screen"
    Identifier "intel"
    Device "intel"
    EndSection
    systemctl status:
    ● feynman
    State: running
    Jobs: 0 queued
    Failed: 0 units
    Since: Mon 2014-09-29 22:49:32 BST; 7min ago
    CGroup: /
    ├─1 /sbin/init
    ├─system.slice
    │ ├─dbus.service
    │ │ └─394 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    │ ├─system-netctl\x2dauto.slice
    │ │ └─[email protected]
    │ │ ├─418 wpa_supplicant -B -P /run/wpa_supplicant_wlp3s0.pid -i wlp3s0 -D nl80211,wext -c/run/network/wpa_supplicant_wlp3s0.conf -W
    │ │ ├─420 wpa_actiond -p /run/wpa_supplicant -i wlp3s0 -P /run/network/wpa_actiond_wlp3s0.pid -a /usr/lib/network/auto.action
    │ │ └─545 dhcpcd -4 -q -t 30 -K -L wlp3s0
    │ ├─systemd-journald.service
    │ │ └─192 /usr/lib/systemd/systemd-journald
    │ ├─systemd-logind.service
    │ │ └─393 /usr/lib/systemd/systemd-logind
    │ ├─systemd-udevd.service
    │ │ └─222 /usr/lib/systemd/systemd-udevd
    │ ├─kdm.service
    │ │ ├─408 /usr/bin/kdm -nodaemon
    │ │ ├─410 /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-XeCSpb
    │ │ ├─493 -:0
    │ │ └─494 /usr/lib/kde4/libexec/kdm_greet
    │ └─gpm.service
    │ └─395 /usr/bin/gpm -m /dev/input/mice -t imps2
    └─user.slice
    └─user-0.slice
    ├─[email protected]
    │ ├─547 /usr/lib/systemd/systemd --user
    │ └─549 (sd-pam)
    └─session-c1.scope
    ├─407 login -- root
    ├─551 -bash
    └─591 systemctl status

  • Hard disk problems after full upgrade [SOLVED]

    After a full upgrage (pacman -Suy) last monday, My system denied to boot:D:D:D:D:D.
    So to fix it I have to go to /boot/grub/menu.list and change from hda3 to sda3. Everything seems to be Ok but when the system is booting and scan the the hard disk to check bad, It drops me to the shell with the error that there is something wrong with my hard disk and it suggest me to set the superblock to 8139.
    So to fix it I boot my PC from Arch live CD, use the following command:
    #fsck.ext3 -c -f /dev/sda3
    #fsck.ext3 -b 8139
    Everything seems to be Ok, there is no bad in my hard disk.
    When I boot my system again, I got the same error again, I came back to live CD, check the hard disk, set the superblock as It told me and again, I got the error when I boot from the hard disk.
    This is the second PC with the same error.
    Three months ago, I upgraded my Server and got exactly the same problem. Because this is the server, I need it run ASAP, so I modified the rc.sysinit script so that the system will not check my hard disk when It boots. :P:P. And my Server can run without any problems since then.
    I don't have time much to spend on this error and my PC is in the Lab now so I can't provide the detail of the error until next Monday. Sorry for that.
    Any idea how to fix this error?
    Cheers.
    Last edited by hungsonbk (2008-06-25 10:26:35)

    tigrmesh wrote:Did you review and merge any .pacnew files after the upgrade?
    :D:D I am a kind of lazy guy so when I did pacman -Suy, I just leave it running without reading information on the terminal.
    milan wrote:I guess you didn't change entries in /etc/fstab (hda->sda).
    Yes, you are right. I changed from hda to sda in /boot/grub/menu.lst but I forgot to do the same in /etc/fstab files. On Monday I will check again if it is set correctly or not
    :D:D. I have just taken a quick look into the fstab file in my Server, The One with the same problem three months ago, and the fstab file is set correctly with sda partitions. I don't want to touch this server again or my services will be down. So this seems not the correct solution, but anyway, I will take a look at it next week.
    Thanks for your replies.

  • [SOLVED] Laptop freezes at startup after kernel upgrade to 3.13.6

    Some days ago I got a new Dell Sputnik 3 Laptop and installed Arch Linux with UEFI Boot and gummiboot as bootloader. The installation was successful.
    However two days ago there was an upgrade for the Linux Kernel from 3.13.5 to 3.13.6. When I restarted the Laptop after the upgrade of the kernel the Laptop freezed directly after pushing the power button (never got ahead of the initial DELL logo).
    I ran the DELL hardware diagnostics to identify a possible damage of the SSD but everything was ok. Than I booted into a live system ad mounted the root partition and there was no problem work on it. Additionally I change the value of timeout in gummiboots loader.conf (it was commented out before). Since than I got the gummiboot boot menu at least. So narrowing down, I think something happened during the kernel upgrade. Unfortunately I have no clue what could it be since I am convinced that at the installation process some days before I did everything like it was described at the beginners guide so automatic gummiboot update had to be possible.
    The drive is partitioned in the live system looks like this (look at sda):
    ├─sda1 8:1 0 512M 0 part /boot
    └─sda2 8:2 0 235G 0 part /
    fstab like this:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # /dev/sda2
    UUID=3f216fdb-f4c6-459a-856f-6f246d7a5bff / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda1
    UUID=0F8F-2A3B /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    # swap
    /swapfile none swap defaults 0 0
    I have and arch.conf in gummiboot looking like this:
    title Arch Linux
    linux /vmlinuz-linux
    initrd /initramfs-linux.img
    options root=/dev/sda2 rw
    and the loader.conf of gumiboot looking like this:
    timeout 5
    default 56cccedc29f1418ab2d8f1762ea09471-*
    Now, I don't know anymore how to proceed to identify the problem and hopefully solve it
    Last edited by cutuchiqueno (2014-03-11 21:47:32)

    looks like this issue might be the same:
    https://bbs.archlinux.org/viewtopic.php?id=172961&p=1
    If I find time I might try using an alternative to gummiboot to see if this works.
    Update: There also seems to be a reopened bug report on this https://bugs.archlinux.org/task/33745
    Last edited by Strawpants (2014-03-10 21:26:26)

  • [SOLVED] Low quality windows after kernel upgrading

    Hello,
    I've got such a weird situation. After I upgraded to 3.12-2, my KDE windows got a low quality style. You can figure out better what I mean with this screenshot.
    I did try to reinstall the video driver (I'm using the integrated gpu currently), delete and recreate the KDE cache, and downgrade the kernel. But an even stranger thing is that although I downgraded the kernel, the system kept using the 3.12.2-2; I was able to use neither dhcpcd nor X too.
    I strongly think it's an hardware compatibility problem, don't you?
    Last edited by Grant (2013-12-07 12:23:46)

    berbae wrote:
    Grant wrote:I did try to re-install the video driver, delete and recreate the KDE cache, and downgrade the kernel.
    It would have been better to post the exact commands you used and their result (what video driver? what KDE cache? what kernel? )
    I strongly think it's an hardware compatibility problem, don't you?
    How could that prevent you from downgrading the kernel?
    So you say that you downgraded the kernel, to 3.12.1-3 I presume, you rebooted and the machine still uses the 3.12.2-1 kernel!
    It's very strange : did the downgrading finished normally? Look into the pacman.log file and the kernel log messages in dmesg; and the xorg server log also, if possible with the new kernel and with the previous one. There is also the .xsession-errors file in $HOME.
    I know it's strange! I've never come across a similiar problem. And I'm gonna tell you more: it kept doing that even when the *.3-1 came out. I had to use the brute force. I manually removed the kernel images, the packages in the cache, and upgraded with --force, all that in live mode, and it worked fine.

  • Really big issue after last upgrade

    After invoking
    pacman -Syu
    this morning something really strange happened : it upgraded my kernel headers and docs to kernel 2.6.35.7, but did nothing to the kernel itself. After the install of all packages, I went to the '/boot' directory and it was empty except for the 'grub' sub-directory. Since the kernel was still loaded in memory, it was only a matter of doing
    pacman -S kernel26
    and it installed the kernel and initramfs image.  All this happened while I rebooted in console mode to uninstall gtk/gnome completely and install kde.
      After that I went to check my system configuration file 'rc.conf' and guess what, it was missing too and after that I noticed that 'inittab' had also been deleted. Luckly I edited both files with vim which made backups in 'rc.conf~' and 'inittab~' respectively, so it was easy to restore both. After having a quick look at etc I decided to reboot the system(default runlevel was changed back to 5 so I could boot kde directly) but something was strange after reboot(I expected that) : nouveau framebuffer driver did not load and I never entered KDM, getting a terminal login instead. Also noticed that the PS1 variable was not set. After trying to edit my configuration files I kept getting that this was a read only file system and could do nothing until I booted with an old ubuntu livecd. After checking on 'inittab' again I noticed the following files were missing(sadly, I never edited them):
    - /etc/rc.sysinit
    - /etc/rc.single
    - /etc/rc.multi
    - /etc/rc.shutdown
      Has anyone experienced this 'accident' before? If so, do you have any clue how I might recover those files? I would rather not reinstall the system.
      Thanks in advance.

    jonathan183 wrote:
    thiago wrote:
    After checking on 'inittab' again I noticed the following files were missing(sadly, I never edited them):
    - /etc/rc.sysinit
    - /etc/rc.single
    - /etc/rc.multi
    - /etc/rc.shutdown
      Has anyone experienced this 'accident' before? If so, do you have any clue how I might recover those files? I would rather not reinstall the system
    pacman -Qo /etc/rc.sysinit reports owned by package initscripts ... which you could re-install ... might be worth reviewing logs and see if you can figure out whats going on first though ...
      Thanks, after manually installing the 'initscripts' package in '/var/cache/pacman/pkg', my system was restored. As for what happened, I believe it was some bug with pacman, as the 'initscripts' package was uninstalled after the system upgrade. That package was part of the 'base' meta package which was upgraded as a whole. After the restore I issued :
    pacman -Sf initscripts
    to have the package 'officially installed'.
      As I stated, 'initscripts' was not the only package uninstalled after the system upgrade, kernel26 was lost too(but kernel26-docs and kernel26-headers were upgraded successfully). After the restore I tried to start kde with 'startx' and got a message stating that '/usr/bin/X' could not be found/executed. That was solved by reinstalling the 'xorg' meta package, but I believe some package of the 'xorg' group was also uninstalled after the upgrade.

  • Fglrx: module mismatch after last upgrade

    Ok, I know what it means and I know that everything should work...but it doesn't 
    After yesterday upgrade of xorg-server the ati-drivers conflict with the new version
    X Window System Version 7.1.1
    Release Date: 12 May 2006
    X Protocol Version 11, Revision 0, Release 7.1.1
    Build Operating System: UNKNOWN
    Current Operating System: Linux kortirion 2.6.17-beyond #1 PREEMPT Sun Jul 30 13:09:32 CEST 2006 i686
    Build Date: 09 September 2006
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 11 12:12:22 2006
    (==) Using config file: "/etc/X11/xorg.conf"
    (EE) module ABI major version (0) doesn't match the server's version (1)
    (EE) Failed to load module "fglrx" (module requirement mismatch, 0)
    (EE) No drivers available.
    Fatal server error:
    no screens found
    XIO: fatal IO error 104 (Connection reset by peer) on X server ":0.0"
    after 0 requests (0 known processed) with 0 events remaining.
    I've done some researches and even using startx -- -ignoreABI doesn't help:
    X Window System Version 7.1.1
    Release Date: 12 May 2006
    X Protocol Version 11, Revision 0, Release 7.1.1
    Build Operating System: UNKNOWN
    Current Operating System: Linux kortirion 2.6.17-beyond #1 PREEMPT Sun Jul 30 13:09:32 CEST 2006 i686
    Build Date: 09 September 2006
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 11 12:15:57 2006
    (==) Using config file: "/etc/X11/xorg.conf"
    (WW) module ABI major version (0) doesn't match the server's version (1)
    [R200Setup] X version mismatch - detected X.org 7.1.1.0, required X.org 7.0.-1.8
    (EE) Failed to load module "fglrx" (module requirement mismatch, 0)
    (EE) No drivers available.
    Fatal server error:
    no screens found
    XIO: fatal IO error 104 (Connection reset by peer) on X server ":0.0"
    after 0 requests (0 known processed) with 0 events remaining.
    I've tried also the newest ati drivers ( 8.28.8 ) with no luck (and btw the current PKGBUILD doesn't work too, it complains about a already existing links to Makefile.lib.c; applying the patch ati-makefile-2.6.16.patch correct the problem).
    The open source's ati drivers work, and I'm using them now. xorg.conf hasn't changed at all and, no, generating one new with aticonfig doesn't solve the problem.

    I got it working now 
    At first, compiling ati-fglrx-beyond with the Cerebral's pkgbuild they gave me this error:
    make: Entering directory `/usr/src/linux-2.6.17-beyond'
    ln: creating symbolic link `./Makefile.lib.c' to `../scripts/Makefile.lib.c': File exists
    make[1]: *** [scripts/Makefile.lib.c] Error 1
    make: *** [_module_/var/abs/local/ati-fglrx-beyond/src/lib/modules/fglrx/build_mod] Error 2
    make: Leaving directory `/usr/src/linux-2.6.17-beyond'
    ok, let's remove that link then, I thought. But after having done that:
    make: Entering directory `/usr/src/linux-2.6.17-beyond'
    CC scripts/Makefile.lib.o
    gcc: scripts/Makefile.lib.c: No such file or directory
    gcc: no input files
    make[1]: *** [scripts/Makefile.lib.o] Error 1
    make: *** [_module_/var/abs/local/ati-fglrx-beyond/src/lib/modules/fglrx/build_mod] Error 2
    make: Leaving directory `/usr/src/linux-2.6.17-beyond'
    That was weird  :?
    After googling a bit, I've found an idea from the ubuntu forum where it says to run
    make scripts/
    from /usr/src/linux-$kernver/ ; after a little wait time to allow the compiling, I retried to make the driver compiling and this time they worked flawlessly 
    No more module mismatch, I wonder why I didn't have that Makefile.lib.c in the kernel source directory....
    Anyway, thanks for your help Cerebral

  • MacBook not booting after RAM upgrade

    I'm sorry if the case has been already posted.
    Yesterday I took my MacBook Alu unibody late 2008 to a RAM upgrade (from 2 to 4gigs) to an offical Mac Reseller. They installed it and showed me that the system loads properly and recognized the new RAM.
    I took it home, started working on After Effects and Photoshop and when i wanted to check a video on Quicktime, this program refused to boot.
    Then photoshop freeze and after effects did so. I quited all aplications and restarted. On restart after the 'bong' i've got the grey screen white an apple logo and a loading bar underneath, that was it, it never finished loading but shutting down.
    After the 2nd try the computer gave me the BAD RAM alarm signal right before the start button was pressed and nothing more. I just managed to start it ONCE on safe mode, but this one also freezed and colapsed.
    Today i didn't get the BAD ram alarm but the grey screen and loading bar after shutting down.
    I took it back to the reseler, the shop boss who did the upgrade wasn't there , the guys on the morning shift placed the old RAM back resulting the same. So they told me it's a software problem, not hardware and might be caused by a failed firmware update or something i did wrong and since i was showed that the system booted after the upgrade i can't complain or argue that they did somethiing wrong.
    So basically the want 80euros to check what's wrong with my computer plus the 120 i already payed them for a RAM that doesn't work and of course the repair cost of the computer.
    On monday i'll go to talk to the boss, what do you guys recomend me to tell him? i'm frustrated that the guys there treat me like if i broke my computer for beeing stupid and wanted to get it fixed for free, when it clearly broke after they did something wrong on it!
    please advice me!
    thanks!
    Message was edited by: finn bell

    What brand is the RAM? From what you said, it is obvious that the RAM is at fault. I would simply tell them that it is not compatible and return the RAM.
    Check the System Profiler to see what it says about the RAM (Apple Logo - About this Mac - More Info) and run this application to test the RAM:
    http://www.memtestosx.org/joomla/index.php
    If either shows any errors, print out the results and take them with you to the store.

Maybe you are looking for

  • SSIS : Read Rows from an Object variable in SSIS Script Task which is looped many times.

    Hello All, Here is what I am trying to do... 1. I am having two rows, one column in an Object Variable. (vLoopCountObj). 2. I am having 30 Rows, 2 Columns in my second Object  Variable (vTableRowsObj) 3. I have a FOR EACH LOOP which will run for numb

  • How to identify the last usage of  8i database?

    Hi All, We are in process of decommissioning our old databases. I need to know the last usage of a 8i database. Is the any v$ views or DBA views to identify that? Thanks Aruna

  • JAXP XSLT transformation UTF-8 issue

    Hi all, I have XML file generated from Java app. File is valid and is in UTF-8. I have XSLT template created with Altova StyleVision. Template is to produce RTF output file from above XML. I Java app there are two variant for XSLT transformation - wi

  • Using journalized data in an interface with aggragate function

    Hi I am trying to use the journalized data of a source table in one of my interfaces in ODI. The trouble is that one of the mappings on the target columns involves a aggregate function(sum). When I run the interface i get an error saying "not a group

  • T42P Display Driver Problems

    I am having issues with my t42p not displaying install screens, etc.  Properly.  It might open a screen and only show part of the input as if it was minimized.  There appears no way to expand the screen, no minimize or restore down buttons.  This cau