How NOT to upgrade a package while pacman -Syu

This may sound confusing, but I am trying to keep my system up to date with the latest software, but I do not want to upgrade one package or else I am 110% sure I will break my system.
So when I run pacman -Syu, it tells me that I have 4 packages to upgrade, one being the package I do not want to update. So far the only way I found to upgrade my system but still keeping it unbroken is having to manually install all theremaing upgrades using
pacman -S name_of_packages_that_need_to_be_upgraded.
which can be a long list (3 in this case), especially if I don't do it for awhile.
My question is, is there a way to stop pacman from trying to always upgrade the one package I do not want and upgrade all the rest just like its supposed to?
I have not found a way to do this, but I am not fluent enough with the package manager to know if there is a command for this task. If there isn't such a command, then how hard would it be to add this functionality? I know this kinda goes against the arch way, but so does manually upgrading each package individually. KISS
Any help would be appreciated and I can clearly understand if this can't be resolved.
Last edited by jacko (2008-01-02 14:12:28)

Misfit138 wrote:Put the ignorepkg = in your pacman.conf. That way you don't have to type it ever again.
I will add, I put this under the general options part of pacman.conf for anyone who is confused that is reading this. Great tip this one here is. One more question though? would u put multiple packages on one line or would u add a ignorpkg = for every package u don't want upgraded?
# GENERAL OPTIONS
[options]
LogFile     = /var/log/pacman.log
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
ignorepkg   = lib32-glibc

Similar Messages

  • Upgrade File Conflicts (with Pacman -Syu)

    When I do a pacman -Syu, I get the following error message:
    checking for file conflicts...
    error: the following file conflicts were found:
       ncurses:  /usr/share/terminfo/s/screen-256color: exists in filesystem
       ncurses:  /usr/share/terminfo/s/screen-256color-bce: exists in filesystem
    errors occurred, no packages were upgraded.
    Hmm.. Any ideas on how to get around this error?
    Rob

    I just saw the answer in the News.  Upgrade screen first.  Then upgrade ncurses.  I will give that a try.
    Rob

  • How to Return List of Packages from Pacman/Yaourt Search

    ----EDIT----
    Changed the name of the script from pacsearch to pacdot.
    Apparently yaourt -Ssaq does this, so this script isn't as necessary as I thought. Although, I still find using pacdot -w to open the results in a text document helpful.
    ----/EDIT----
    This isn't a question; it's a script I wrote. I thought someone else might find this useful.
    I keep finding myself searching with pacman or yaourt and wishing I could get just the package names, not all of the extra stuff. For example, I'd love to be able to run yaourt -Sa $(yaourt -Ssa package). It doesn't seem like pacman and yaourt have an option for this (not that I can tell, at least), so I wrote a python script to do it. Copy it if you'd like. You can name it what you want, but I'll refer to it as pacdot.py.
    pacdot.py package will be like yaourt -Ssa package but only list the package names.
    I added a few extra options:
    pacdot.py -o package will only list results from the official Arch repositories, not the AUR.
    pacdot.py -i package will install all the found packages. If you've ever thought about running something like yaourt -Sa $(yaourt -Ssa package), that's what this command does.
    pacdot.py -w package will:
    Create a file called 'the-package-you-searched.txt',
    Write an example command that would install the found packages,
    (yaourt -Sa all-of-the-results),
    Write each result on a new line, and
    Open the file for you (with your default text editor).
    Here's the code:
    #!/bin/python3
    import argparse
    import re
    from subprocess import Popen, PIPE, call
    from collections import deque
    desc = ''.join(('Search the official Arch and AUR databases ',
    'and return package names only. ',
    'e.g.: `pacdot.py arch` will return "arch", ',
    'whereas `$ yaourt -Ssa arch` will return ',
    '"community/arch 1.3.5-10',
    ' A modern and remarkable revision control system."'
    parser = argparse.ArgumentParser(description=desc)
    parser.add_argument('package',
    help='Package to search with pacman')
    parser.add_argument('-o', '--official', action='store_true',
    help='Search official repositories only, not the AUR')
    parser.add_argument('-i', '--install', action='store_true',
    help='Install found packages')
    parser.add_argument('-w', '--write', action='store_true',
    help='Write to file')
    #Set args strings.
    args = parser.parse_args()
    pkg = args.package
    official_only = args.official
    install = args.install
    write = args.write
    # Do yaourt search.
    package_search = Popen(['yaourt', '-Ssa', '%s' % pkg], stdout=PIPE).communicate()
    # Put each found package into a list.
    package_titles_descs = str(package_search[0]).split('\\n')
    # Strip off the packages descriptions.
    package_titles = [package_titles_descs[i]
    for i in range(0, len(package_titles_descs), 2)]
    # Remove empty item in list.
    del(package_titles[-1])
    # Make a separate list of the non-aur packages.
    package_titles_official = deque(package_titles)
    [package_titles_official.remove(p)
    for p in package_titles if p.startswith('aur')]
    # Strip off extra stuff like repository names and version numbers.
    packages_all = [re.sub('([^/]+)/([^\s]+) (.*)',
    r'\2', str(p))
    for p in package_titles]
    packages_official = [re.sub('([^/]+)/([^\s]+) (.*)',
    r'\2', str(p))
    for p in package_titles_official]
    # Mark the aur packages.
    # (Not needed, just in case you want to modify this script.)
    #packages_aur = packages_all[len(packages_official):]
    # Set target packages to 'all' or 'official repos only'
    # based on argparse arguments.
    if official_only:
    packages = packages_official
    else:
    packages = packages_all
    # Print the good stuff.
    for p in packages:
    print(p)
    if write:
    # Write results to file.
    filename = ''.join((pkg, '.txt'))
    with open(filename, 'a') as f:
    print(''.join(('Yaourt search for "', pkg, '"\n')), file=f)
    print('To install:', file=f)
    packages_string = ' '.join(packages)
    print(' '.join(('yaourt -Sa', packages_string)), file=f)
    print('\nPackage list:', file=f)
    for p in packages:
    print(p, file=f)
    # Open file.
    call(('xdg-open', filename))
    if install:
    # Install packages with yaourt.
    for p in packages:
    print(''.join(('\n\033[1;32m==> ', '\033[1;37m', p,
    '\033[0m')))
    Popen(['yaourt', '-Sa', '%s' % p]).communicate()
    Last edited by GreenRaccoon23 (2014-12-22 19:17:37)

    expac works only with official and unofficial repos, not with the AUR, but it's very nice.
    Adding  '-q' should help, grep to weed out false positives.
    yaourt -Sa $(yaourt -Ssaq pulse)
    works, but
    $ yaourt -Sa $(yaourt -Ssaq chrome)
    resolving dependencies...
    looking for inter-conflicts...
    warning: removing 'chromium' from target list because it conflicts with 'chromium-no-sse2'
    error: unresolvable package conflicts detected
    error: failed to prepare transaction (conflicting dependencies)
    :: chromium-no-sse2 and chromium-scroll-pixelGs are in conflict
    so at least
    $ yaourt -Sa $(yaourt -Ssaq chrome|grep google)
    is needed.
    Edit: Also:
    $ LC_ALL=C TZ=GMT0 diff -Naur /usr/bin/pacsearch /usr/local/bin/pacsearch
    --- /usr/bin/pacsearch 2014-11-21 11:20:37.000000000 +0000
    +++ /usr/local/bin/pacsearch 2014-12-21 08:21:14.758856006 +0000
    @@ -84,7 +84,7 @@
    my %allpkgs = ();
    -my $syncout = `pacman -Ss '@ARGV'`;
    +my $syncout = `pacman -Ssq '@ARGV'`;
    # split each sync search entry into its own array entry
    my @syncpkgs = split(/\n^(?=\w)/m, $syncout);
    # remove the extra \n from the last desc entry
    @@ -110,7 +110,7 @@
    $allpkgs{$pkgfields[1]} = [ @pkgfields ];
    -my $queryout = `pacman -Qs '@ARGV'`;
    +my $queryout = `pacman -Qqs '@ARGV'`;
    # split each querysearch entry into its own array entry
    my @querypkgs = split(/\n^(?=\w)/m, $queryout);
    # remove the extra \n from the last desc entry
    $ /usr/local/bin/pacsearch pulse
    libpulse
    pulseaudio
    libao
    libcanberra-pulse
    libpulse
    paprefs
    pavucontrol
    pulseaudio
    pulseaudio-alsa
    floyd
    libcec
    mate-media-pulseaudio
    mate-settings-daemon-pulseaudio
    ponymix
    projectm-pulseaudio
    Although why not simply use pacman or expac?
    Last edited by karol (2014-12-21 08:26:48)

  • I have a basic photography plan.  How can I upgrade my storage while keeping the plan?

    My name is Joseph Ryan.  I currently have a photography plan that's for $10 a month with only 2gb of storage.  How can I increase my storage without upgrading the plan?

    I shall be assisting you regarding this to increase the storage space, I shall be informing you once completed.
    Regards
    Rajshree

  • How to Import a DTS Package, while keeping version History in Destination Intact

    Hi Guys,
    Not sure if this is the right forum for my question. But I couldn't find any other DTS forum to post my query.
    Basically, I have my Production Environment in SQL 2008R2 and it contains few DTS [NOT SSIS!!!!] packages in Management > Legacy. One of those packages, Let's say is, 'PackageA.dts'.
    Now for the PackageA, we have versions of last couple of years (almost 11 versions we have for this package), recently in Test Environment (again, SQL 2008R2) we made Lot of changes to that Package and now we want bring that package from Test Env. to Production.
    But a) we prefer not to 'open it in Prod then make all individual changes one by one' rather we just need to kind of overwrite/replace our existing Production Package   b) also, we don't want to loose version  history for the Existing PackageA.dts
    in Production, so anytime we can rollback when required.
    Any Idea if I can? [Please don't post non relevant answer like, convert DTS to SSIS. Sorry if I sound rude, really will appreciate if some one can try helping me.]  
    Regards, Avik M.

    Hi ArthurZ... "...No deletions, just import, it overrides the prod package" --- Is that the
    case? If so, it could have resolved my issue I guess. But that's not happening...
    If I don't delete and try to import same named package, I get below error::
    TITLE: Object Explorer
    DTS Package 'PackageA' already exists with a different ID in this category. (Microsoft OLE DB Provider for SQL Server)
    Regards, Avik M.
    EDIT: Also, I found another Post : dts-package-already-exists-with-different-id-in-this-category which
    says, we need to basically delete the existing Package to import same named package. -- Just opposite of what you mentioned ArthurZ. So what's the conclusion?
    I need to understand why the same package that I'm bringing from a different server is not just creating a new version if that package name already exists?
    Any workaround Microsoft?

  • [SOLVED] Pacman wont upgrade any packages

    EDIT: I was able to solve my problem by pacman -R yaourt package-query pacman-color, I was then able to update pacman. Since I like yaourt and wanted to keep it I follow the instructions on their page (http://archlinux.fr/yaourt-en#get_it). I added their repo to my /etc/pacman.conf and then installed yaourt from pacman and now everything works again like it should.
    When I try to upgrade packages I get the following errors:
    [jason@barnaby ~]$ sudo pacman -Su
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    [jason@barnaby ~]$ sudo pacman -Su
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] n
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    [jason@barnaby ~]$
    Last edited by slughappy1 (2012-01-17 18:07:42)

    I tried to uninstall packagekit and failed, then I tried to install packagekit-git and that failed too.
    [jason@barnaby ~]$ sudo pacman -R packagekit
    Password:
    error: 'packagekit': target not found
    [jason@barnaby ~]$ yaourt -S packagekit-git
    ==> Downloading packagekit-git PKGBUILD from AUR...
    x ChangeLog
    x PKGBUILD
    Comment by: onestep_ua on Thu, 16 Sep 2010 23:56:56 +0000
    Updated this to follow the change of GIT server.
    Comment by: nxarmada on Tue, 01 Feb 2011 06:01:55 +0000
    == Installing missing dependencies...
    error: 'gir-repository=0.6.6': could not find or read package
    == ERROR: 'pacman' failed to install missing dependencies.
    I assume this should be git-repository=0.6.6 Also I can find this package on Pacman or AUR
    Comment by: onestep_ua on Tue, 01 Feb 2011 09:27:06 +0000
    This is obsolete dependency connected with gobject-introspection support. I think it can be removed without any problems. :)
    Comment by: nxarmada on Thu, 03 Feb 2011 18:40:37 +0000
    So I am trying to compile but I get this....any ideas?
    SyntaxError: invalid syntax
    make[4]: *** [enums.py] Error 1
    make[4]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib/python/packagekit'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib/python'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build'
    make: *** [all] Error 2
    Aborting...
    Comment by: bash on Tue, 29 Mar 2011 00:57:10 +0000
    these lines are needed before ./autogen.sh
    sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
    -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
    $(find . -name '*.py')
    Comment by: bash on Tue, 29 Mar 2011 01:14:30 +0000
    also ./autogen.sh must be replaced with:
    PYTHON=/usr/bin/python2 ./autogen.sh
    First Submitted: Sun, 20 Apr 2008 23:33:58 +0000
    packagekit-git 20100917-1
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> packagekit-git dependencies:
    - dbus-glib>=0.86 (already installed)
    - polkit>=0.96 (already installed)
    - networkmanager>=0.8.1 (already installed)
    - pacman>=3.4.1 (already installed)
    - python>=2.6.5 (already installed)
    - sqlite3 (already installed)
    - git (already installed)
    - gnome-common (already installed)
    - intltool (already installed)
    - pm-utils (already installed)
    - libtar (package found)
    - gir-repository>=0.6.6 (building from AUR)
    - pacman-glib>=3.4.0 (building from AUR)
    ==> Continue building packagekit-git ? [Y/n]
    ==> ----------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for packagekit-git:
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    ==> Restart building packagekit-git ? [y/N]
    ==> ---------------------------------------

  • How to find upgradable packages in the system?

    After each `pacman -Sy' synchronization, is there a easy way to find out what packages in the system are upgradable?

    Doing a
    pacman -Syu
    will sync up with the repositories and then upgrade all the packages on your computer that need upgrading. It will display all the packages that need upgrading and ask you if you want to upgrade them, so you can exit without upgrading if you change your mind.
    Be sure to check out the pacman wiki and the wiki and forums if your unsure about programs in the future.
    Edit: wow, beat me to the punch

  • After pacman -Syu upgrade xfce boots black screen cursor

    Hello,
    I've recently upgraded the system with pacman -Syu and it seem something has gone wrong with new xfce 4.12. I have changed DM from slim to lxdm and can only boot to openbox but not xfce. I also switch to tty2 and try a startx with ~/.xinitrc file with exec startxfce4 but it does not launch properly. What I mean is both the display manager and a startx boots me into a black screen with a cursor when i try to launch xfce. Again I can boot to openbox just fine. I've searched for similar topics but cant seem to find any solution. Can anyone help?
    [ 18.673]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 18.673] X Protocol Version 11, Revision 0
    [ 18.673] Build Operating System: Linux 3.18.6-1-ARCH x86_64
    [ 18.673] Current Operating System: Linux arch-server 3.14.35-1-lts #1 SMP Sat Mar 7 19:24:12 CET 2015 x86_64
    [ 18.674] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    [ 18.674] Build Date: 14 March 2015 06:45:50PM
    [ 18.674]
    [ 18.674] Current version of pixman: 0.32.6
    [ 18.674] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 18.674] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.674] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Mar 17 03:38:39 2015
    [ 18.937] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 19.047] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 19.553] (==) No Layout section. Using the first Screen section.
    [ 19.553] (**) |-->Screen "Default Screen" (0)
    [ 19.553] (**) | |-->Monitor "<default monitor>"
    [ 19.586] (==) No monitor specified for screen "Default Screen".
    Using a default monitor configuration.
    [ 19.586] (==) Automatically adding devices
    [ 19.586] (==) Automatically enabling devices
    [ 19.586] (==) Automatically adding GPU devices
    [ 20.294] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 20.294] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 20.294] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.354] (II) Loader magic: 0x815d80
    [ 20.354] (II) Module ABI versions:
    [ 20.354] X.Org ANSI C Emulation: 0.4
    [ 20.354] X.Org Video Driver: 19.0
    [ 20.354] X.Org XInput driver : 21.0
    [ 20.354] X.Org Server Extension : 9.0
    [ 20.356] (EE) systemd-logind: failed to get session: PID 940 does not belong to any known session
    [ 20.357] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 20.359] (--) PCI:*(0:1:5:0) 1002:9616:1462:7641 rev 0, Mem @ 0xd0000000/268435456, 0xfebe0000/65536, 0xfea00000/1048576, I/O @ 0x0000d000/256
    [ 20.359] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 20.422] (II) "glx" will be loaded by default.
    [ 20.423] (II) LoadModule: "vnc"
    [ 20.568] (II) Loading /usr/lib/xorg/modules/extensions/libvnc.so
    [ 22.029] (II) Module vnc: vendor="Constantin Kaplinsky"
    [ 22.029] compiled for 1.17.1, module version = 1.0.0
    [ 22.029] Module class: X.Org Server Extension
    [ 22.029] ABI class: X.Org Server Extension, version 9.0
    [ 22.029] (II) LoadModule: "glx"
    [ 22.030] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 24.054] (II) Module glx: vendor="X.Org Foundation"
    [ 24.208] compiled for 1.17.1, module version = 1.0.0
    [ 24.208] ABI class: X.Org Server Extension, version 9.0
    [ 24.208] (==) AIGLX enabled
    [ 24.208] (==) Matched ati as autoconfigured driver 0
    [ 24.208] (==) Matched ati as autoconfigured driver 1
    [ 24.208] (==) Matched modesetting as autoconfigured driver 2
    [ 24.208] (==) Matched fbdev as autoconfigured driver 3
    [ 24.208] (==) Matched vesa as autoconfigured driver 4
    [ 24.208] (==) Assigned the driver to the xf86ConfigLayout
    [ 24.208] (II) LoadModule: "ati"
    [ 24.261] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 24.332] (II) Module ati: vendor="X.Org Foundation"
    [ 24.332] compiled for 1.17.0, module version = 7.5.0
    [ 24.332] Module class: X.Org Video Driver
    [ 24.332] ABI class: X.Org Video Driver, version 19.0
    [ 24.332] (II) LoadModule: "radeon"
    [ 24.333] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 24.765] (II) Module radeon: vendor="X.Org Foundation"
    [ 24.765] compiled for 1.17.0, module version = 7.5.0
    [ 24.765] Module class: X.Org Video Driver
    [ 24.765] ABI class: X.Org Video Driver, version 19.0
    [ 24.765] (II) LoadModule: "modesetting"
    [ 24.765] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 24.878] (II) Module modesetting: vendor="X.Org Foundation"
    [ 24.878] compiled for 1.17.1, module version = 1.17.1
    [ 24.878] Module class: X.Org Video Driver
    [ 24.878] ABI class: X.Org Video Driver, version 19.0
    [ 24.878] (II) LoadModule: "fbdev"
    [ 24.878] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 25.005] (II) Module fbdev: vendor="X.Org Foundation"
    [ 25.005] compiled for 1.17.0, module version = 0.4.4
    [ 25.005] Module class: X.Org Video Driver
    [ 25.005] ABI class: X.Org Video Driver, version 19.0
    [ 25.005] (II) LoadModule: "vesa"
    [ 25.006] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 25.099] (II) Module vesa: vendor="X.Org Foundation"
    [ 25.099] compiled for 1.17.0, module version = 2.3.2
    [ 25.099] Module class: X.Org Video Driver
    [ 25.099] ABI class: X.Org Video Driver, version 19.0
    [ 25.099] (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, SUMO2, 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, 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,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 25.111] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 25.111] (II) FBDEV: driver for framebuffer: fbdev
    [ 25.111] (II) VESA: driver for VESA chipsets: vesa
    [ 25.111] (++) using VT number 7
    [ 25.184] (II) [KMS] Kernel modesetting enabled.
    [ 25.184] (WW) Falling back to old probe method for modesetting
    [ 25.184] (WW) Falling back to old probe method for fbdev
    [ 25.184] (II) Loading sub module "fbdevhw"
    [ 25.184] (II) LoadModule: "fbdevhw"
    [ 25.184] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 25.280] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 25.280] compiled for 1.17.1, module version = 0.0.2
    [ 25.280] ABI class: X.Org Video Driver, version 19.0
    [ 25.280] (WW) Falling back to old probe method for vesa
    [ 25.280] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen" for depth/fbbpp 24/32
    [ 25.280] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 25.280] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 25.280] (==) RADEON(0): Default visual is TrueColor
    [ 25.280] (==) RADEON(0): RGB weight 888
    [ 25.280] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 25.280] (--) RADEON(0): Chipset: "ATI Radeon 3000 Graphics" (ChipID = 0x9616)
    [ 25.280] (II) Loading sub module "dri2"
    [ 25.280] (II) LoadModule: "dri2"
    [ 25.280] (II) Module "dri2" already built-in
    [ 25.280] (II) Loading sub module "exa"
    [ 25.280] (II) LoadModule: "exa"
    [ 25.281] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 25.406] (II) Module exa: vendor="X.Org Foundation"
    [ 25.406] compiled for 1.17.1, module version = 2.6.0
    [ 25.406] ABI class: X.Org Video Driver, version 19.0
    [ 25.406] (II) RADEON(0): KMS Color Tiling: enabled
    [ 25.406] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 25.406] (II) RADEON(0): KMS Pageflipping: enabled
    [ 25.406] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 25.440] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 25.471] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 25.510] (II) RADEON(0): EDID for output VGA-0
    [ 25.541] (II) RADEON(0): EDID for output HDMI-0
    [ 25.541] (II) RADEON(0): Manufacturer: BBY Model: bb20 Serial#: 16843009
    [ 25.541] (II) RADEON(0): Year: 2012 Week: 0
    [ 25.541] (II) RADEON(0): EDID Version: 1.3
    [ 25.541] (II) RADEON(0): Digital Display Input
    [ 25.541] (II) RADEON(0): DFP 1.x compatible TMDS
    [ 25.541] (II) RADEON(0): Max Image Size [cm]: horiz.: 44 vert.: 25
    [ 25.541] (II) RADEON(0): Gamma: 2.20
    [ 25.541] (II) RADEON(0): DPMS capabilities: Off
    [ 25.541] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 25.541] (II) RADEON(0): First detailed timing is preferred mode
    [ 25.541] (II) RADEON(0): redX: 0.645 redY: 0.331 greenX: 0.335 greenY: 0.621
    [ 25.541] (II) RADEON(0): blueX: 0.152 blueY: 0.053 whiteX: 0.313 whiteY: 0.329
    [ 25.541] (II) RADEON(0): Supported established timings:
    [ 25.541] (II) RADEON(0): 720x400@70Hz
    [ 25.541] (II) RADEON(0): 640x480@60Hz
    [ 25.541] (II) RADEON(0): 640x480@67Hz
    [ 25.541] (II) RADEON(0): 640x480@72Hz
    [ 25.541] (II) RADEON(0): 640x480@75Hz
    [ 25.541] (II) RADEON(0): 800x600@56Hz
    [ 25.541] (II) RADEON(0): 800x600@60Hz
    [ 25.541] (II) RADEON(0): 800x600@72Hz
    [ 25.541] (II) RADEON(0): 800x600@75Hz
    [ 25.541] (II) RADEON(0): 832x624@75Hz
    [ 25.542] (II) RADEON(0): 1024x768@60Hz
    [ 25.542] (II) RADEON(0): 1024x768@70Hz
    [ 25.542] (II) RADEON(0): 1024x768@75Hz
    [ 25.542] (II) RADEON(0): 1280x1024@75Hz
    [ 25.542] (II) RADEON(0): 1152x864@75Hz
    [ 25.542] (II) RADEON(0): Manufacturer's mask: 0
    [ 25.542] (II) RADEON(0): Supported standard timings:
    [ 25.542] (II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 25.542] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 25.542] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 25.542] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 25.542] (II) RADEON(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 25.542] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 25.542] (II) RADEON(0): Supported detailed timing:
    [ 25.542] (II) RADEON(0): clock: 97.8 MHz Image Size: 442 x 249 mm
    [ 25.542] (II) RADEON(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 25.542] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 25.542] (II) RADEON(0): Supported detailed timing:
    [ 25.542] (II) RADEON(0): clock: 85.5 MHz Image Size: 442 x 249 mm
    [ 25.542] (II) RADEON(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 25.542] (II) RADEON(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 25.542] (II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 155 MHz
    [ 25.542] (II) RADEON(0): Monitor name: NS-20EM50A13
    [ 25.542] (II) RADEON(0): EDID (in hex):
    [ 25.542] (II) RADEON(0): 00ffffffffffff00085920bb01010101
    [ 25.542] (II) RADEON(0): 00160103812c19782a3c25a554559f27
    [ 25.542] (II) RADEON(0): 0d5054bfef808180714f8140950f9500
    [ 25.542] (II) RADEON(0): 81c0010101012f2640a060841a303020
    [ 25.542] (II) RADEON(0): 3500baf91000001a662150b051001b30
    [ 25.542] (II) RADEON(0): 40703600baf91000001e000000fd0037
    [ 25.542] (II) RADEON(0): 4c1e520f000a202020202020000000fc
    [ 25.542] (II) RADEON(0): 004e532d3230454d35304131330a00a6
    [ 25.542] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 25.542] (II) RADEON(0): Modeline "1600x900"x60.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 25.542] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 25.542] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 25.542] (II) RADEON(0): Output VGA-0 disconnected
    [ 25.542] (II) RADEON(0): Output HDMI-0 connected
    [ 25.542] (II) RADEON(0): Using exact sizes for initial modes
    [ 25.542] (II) RADEON(0): Output HDMI-0 using initial mode 1600x900
    [ 25.542] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 25.542] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fa3b000
    [ 25.542] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 25.542] (==) RADEON(0): DPI set to (96, 96)
    [ 25.542] (II) Loading sub module "fb"
    [ 25.542] (II) LoadModule: "fb"
    [ 25.542] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 25.769] (II) Module fb: vendor="X.Org Foundation"
    [ 25.769] compiled for 1.17.1, module version = 1.0.0
    [ 25.769] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 25.769] (II) Loading sub module "ramdac"
    [ 25.769] (II) LoadModule: "ramdac"
    [ 25.769] (II) Module "ramdac" already built-in
    [ 25.769] (II) UnloadModule: "modesetting"
    [ 25.769] (II) Unloading modesetting
    [ 25.769] (II) UnloadModule: "fbdev"
    [ 25.769] (II) Unloading fbdev
    [ 25.769] (II) UnloadSubModule: "fbdevhw"
    [ 25.769] (II) Unloading fbdevhw
    [ 25.769] (II) UnloadModule: "vesa"
    [ 25.769] (II) Unloading vesa
    [ 25.769] (--) Depth 24 pixmap format is 32 bpp
    [ 25.818] (II) RADEON(0): [DRI2] Setup complete
    [ 25.818] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 25.818] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 25.818] (II) RADEON(0): Front buffer size: 5652K
    [ 25.818] (II) RADEON(0): VRAM usage limit set to 225496K
    [ 25.853] (==) RADEON(0): Backing store enabled
    [ 25.853] (II) RADEON(0): Direct rendering enabled
    [ 25.853] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 25.853] (II) EXA(0): Driver registered support for the following operations:
    [ 25.853] (II) Solid
    [ 25.853] (II) Copy
    [ 25.853] (II) Composite (RENDER acceleration)
    [ 25.853] (II) UploadToScreen
    [ 25.853] (II) DownloadFromScreen
    [ 25.853] (II) RADEON(0): Acceleration enabled
    [ 25.853] (==) RADEON(0): DPMS enabled
    [ 25.853] (==) RADEON(0): Silken mouse enabled
    [ 25.920] (II) RADEON(0): Set up textured video
    [ 25.920] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 25.920] (II) RADEON(0): [XvMC] Extension initialized.
    [ 25.920] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 26.100] (WW) RADEON(0): Option "PasswordFile" is not used
    [ 26.100] (--) RandR disabled
    [ 32.355] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 32.355] (II) AIGLX: enabled GLX_ARB_create_context
    [ 32.355] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 32.355] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 32.355] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 32.355] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 32.355] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 32.355] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 32.355] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 32.357] (II) AIGLX: Loaded and initialized r600
    [ 32.357] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 32.358] (II) RADEON(0): Setting screen physical size to 423 x 238
    [ 35.161] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 35.161] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 35.161] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 35.161] (II) LoadModule: "evdev"
    [ 35.206] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 35.498] (II) Module evdev: vendor="X.Org Foundation"
    [ 35.498] compiled for 1.16.2, module version = 2.9.1
    [ 35.499] Module class: X.Org XInput Driver
    [ 35.499] ABI class: X.Org XInput driver, version 21.0
    [ 35.499] (II) Using input driver 'evdev' for 'Power Button'
    [ 35.499] (**) Power Button: always reports core events
    [ 35.499] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 35.499] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 35.499] (--) evdev: Power Button: Found keys
    [ 35.499] (II) evdev: Power Button: Configuring as keyboard
    [ 35.499] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 35.499] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 35.499] (**) Option "xkb_rules" "evdev"
    [ 35.499] (**) Option "xkb_model" "pc104"
    [ 35.499] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.975] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 35.975] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 35.975] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 35.975] (II) Using input driver 'evdev' for 'Power Button'
    [ 35.975] (**) Power Button: always reports core events
    [ 35.975] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 35.975] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 35.975] (--) evdev: Power Button: Found keys
    [ 35.975] (II) evdev: Power Button: Configuring as keyboard
    [ 35.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event0"
    [ 35.975] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 35.975] (**) Option "xkb_rules" "evdev"
    [ 35.975] (**) Option "xkb_model" "pc104"
    [ 35.976] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.977] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/event9)
    [ 35.977] (**) Logitech Unifying Device. Wireless PID:1028: Applying InputClass "evdev pointer catchall"
    [ 35.977] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:1028'
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: always reports core events
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: Device: "/dev/input/event9"
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Vendor 0x46d Product 0xc52b
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found 20 mouse buttons
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found scroll wheel(s)
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found relative axes
    [ 35.978] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found x and y relative axes
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Configuring as mouse
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Adding scrollwheel support
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: YAxisMapping: buttons 4 and 5
    [ 35.978] (**) evdev: Logitech Unifying Device. Wireless PID:1028: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 35.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0006/input/input12/event9"
    [ 35.978] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:1028" (type: MOUSE, id 8)
    [ 35.978] (II) evdev: Logitech Unifying Device. Wireless PID:1028: initialized for relative axes.
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) keeping acceleration scheme 1
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration profile 0
    [ 35.978] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration factor: 2.000
    [ 35.979] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration threshold: 4
    [ 35.979] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/mouse1)
    [ 35.979] (II) No input driver specified, ignoring this device.
    [ 35.979] (II) This device may have been added with another device file.
    [ 35.980] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event7)
    [ 35.980] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 35.980] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.980] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.980] (**) Generic USB Keyboard: always reports core events
    [ 35.980] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event7"
    [ 35.980] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 35.980] (--) evdev: Generic USB Keyboard: Found keys
    [ 35.980] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 35.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.0/0003:040B:2000.0004/input/input10/event7"
    [ 35.980] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 9)
    [ 35.980] (**) Option "xkb_rules" "evdev"
    [ 35.980] (**) Option "xkb_model" "pc104"
    [ 35.980] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.981] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event8)
    [ 35.981] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 35.981] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.981] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.981] (**) Generic USB Keyboard: always reports core events
    [ 35.981] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event8"
    [ 35.981] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 35.981] (--) evdev: Generic USB Keyboard: Found scroll wheel(s)
    [ 35.981] (II) evdev: Generic USB Keyboard: Forcing buttons for scroll wheel(s)
    [ 35.981] (--) evdev: Generic USB Keyboard: Found relative axes
    [ 35.981] (--) evdev: Generic USB Keyboard: Found x and y relative axes
    [ 35.981] (--) evdev: Generic USB Keyboard: Found keys
    [ 35.981] (II) evdev: Generic USB Keyboard: Configuring as mouse
    [ 35.981] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 35.981] (II) evdev: Generic USB Keyboard: Adding scrollwheel support
    [ 35.981] (**) evdev: Generic USB Keyboard: YAxisMapping: buttons 4 and 5
    [ 35.981] (**) evdev: Generic USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 35.981] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.1/0003:040B:2000.0005/input/input11/event8"
    [ 35.981] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 10)
    [ 35.981] (**) Option "xkb_rules" "evdev"
    [ 35.981] (**) Option "xkb_model" "pc104"
    [ 35.981] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 35.981] (II) evdev: Generic USB Keyboard: initialized for relative axes.
    [ 35.981] (**) Generic USB Keyboard: (accel) keeping acceleration scheme 1
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration profile 0
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration factor: 2.000
    [ 35.982] (**) Generic USB Keyboard: (accel) acceleration threshold: 4
    [ 35.982] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/mouse0)
    [ 35.982] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 35.982] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 35.982] (**) Generic USB Keyboard: always reports core events
    [ 35.982] (**) evdev: Generic USB Keyboard: Device: "/dev/input/mouse0"
    [ 35.982] (EE) evdev: Generic USB Keyboard: Unable to query fd: Inappropriate ioctl for device
    [ 36.060] (EE) PreInit returned 2 for "Generic USB Keyboard"
    [ 36.060] (II) UnloadModule: "evdev"
    [ 36.060] (II) config/udev: Adding input device HP Webcam HD-2200 (/dev/input/event10)
    [ 36.060] (**) HP Webcam HD-2200: Applying InputClass "evdev keyboard catchall"
    [ 36.060] (**) HP Webcam HD-2200: Applying InputClass "keyboard-layout"
    [ 36.060] (II) Using input driver 'evdev' for 'HP Webcam HD-2200'
    [ 36.060] (**) HP Webcam HD-2200: always reports core events
    [ 36.061] (**) evdev: HP Webcam HD-2200: Device: "/dev/input/event10"
    [ 36.061] (--) evdev: HP Webcam HD-2200: Vendor 0x3f0 Product 0xa707
    [ 36.061] (--) evdev: HP Webcam HD-2200: Found keys
    [ 36.061] (II) evdev: HP Webcam HD-2200: Configuring as keyboard
    [ 36.061] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb1/1-5/1-5:1.0/input/input13/event10"
    [ 36.061] (II) XINPUT: Adding extended input device "HP Webcam HD-2200" (type: KEYBOARD, id 11)
    [ 36.061] (**) Option "xkb_rules" "evdev"
    [ 36.061] (**) Option "xkb_model" "pc104"
    [ 36.061] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 36.062] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event6)
    [ 36.062] (II) No input driver specified, ignoring this device.
    [ 36.062] (II) This device may have been added with another device file.
    [ 36.063] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event5)
    [ 36.063] (II) No input driver specified, ignoring this device.
    [ 36.063] (II) This device may have been added with another device file.
    [ 36.063] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event4)
    [ 36.063] (II) No input driver specified, ignoring this device.
    [ 36.063] (II) This device may have been added with another device file.
    [ 36.064] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event3)
    [ 36.064] (II) No input driver specified, ignoring this device.
    [ 36.064] (II) This device may have been added with another device file.
    [ 36.064] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event2)
    [ 36.064] (II) No input driver specified, ignoring this device.
    [ 36.064] (II) This device may have been added with another device file.
    [ 53.210] (II) RADEON(0): EDID vendor "BBY", prod id 47904
    [ 53.210] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 53.210] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 53.210] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 53.210] (II) RADEON(0): Modeline "1600x900"x0.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 53.210] (II) RADEON(0): Modeline "1360x768"x0.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1440x900"x0.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 53.210] (II) RADEON(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e)
    [ 62.870] (II) AIGLX: Suspending AIGLX clients for VT switch
    Last edited by mavo (2015-03-17 13:08:53)

    alphaniner wrote:The preferred way to test a 'default session' is with a clean non-root user. Logging in as root can hide other issues.
    Ok i get that. Here is xorg log and journalctl -b log. I rebooted tried to login through lxdm and got the cursor and blank screen. I then tty3 and startx and launched into openbox to post these results. Still cannot get into xfce as normal user. Thoughts???
    ~.local/share/xorg/Xorg.1.log
    [ 84.848]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 84.848] X Protocol Version 11, Revision 0
    [ 84.848] Build Operating System: Linux 3.18.6-1-ARCH x86_64
    [ 84.848] Current Operating System: Linux arch-server 3.14.35-1-lts #1 SMP Sat Mar 7 19:24:12 CET 2015 x86_64
    [ 84.848] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    [ 84.848] Build Date: 14 March 2015 06:45:50PM
    [ 84.849]
    [ 84.849] Current version of pixman: 0.32.6
    [ 84.849] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 84.849] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 84.850] (==) Log file: "/home/molmedo1/.local/share/xorg/Xorg.1.log", Time: Wed Mar 18 10:06:18 2015
    [ 84.850] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 84.850] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 84.851] (==) No Layout section. Using the first Screen section.
    [ 84.851] (**) |-->Screen "Default Screen" (0)
    [ 84.851] (**) | |-->Monitor "<default monitor>"
    [ 84.851] (==) No monitor specified for screen "Default Screen".
    Using a default monitor configuration.
    [ 84.851] (==) Automatically adding devices
    [ 84.851] (==) Automatically enabling devices
    [ 84.851] (==) Automatically adding GPU devices
    [ 84.851] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 84.851] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 84.851] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 84.851] (II) Loader magic: 0x815d80
    [ 84.851] (II) Module ABI versions:
    [ 84.851] X.Org ANSI C Emulation: 0.4
    [ 84.851] X.Org Video Driver: 19.0
    [ 84.851] X.Org XInput driver : 21.0
    [ 84.851] X.Org Server Extension : 9.0
    [ 84.856] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 84.856] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 84.857] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 84.859] (--) PCI:*(0:1:5:0) 1002:9616:1462:7641 rev 0, Mem @ 0xd0000000/268435456, 0xfebe0000/65536, 0xfea00000/1048576, I/O @ 0x0000d000/256
    [ 84.859] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 84.859] (II) "glx" will be loaded by default.
    [ 84.859] (II) LoadModule: "vnc"
    [ 84.860] (II) Loading /usr/lib/xorg/modules/extensions/libvnc.so
    [ 84.868] (II) Module vnc: vendor="Constantin Kaplinsky"
    [ 84.868] compiled for 1.17.1, module version = 1.0.0
    [ 84.868] Module class: X.Org Server Extension
    [ 84.868] ABI class: X.Org Server Extension, version 9.0
    [ 84.868] (II) LoadModule: "glx"
    [ 84.868] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 84.870] (II) Module glx: vendor="X.Org Foundation"
    [ 84.870] compiled for 1.17.1, module version = 1.0.0
    [ 84.870] ABI class: X.Org Server Extension, version 9.0
    [ 84.870] (==) AIGLX enabled
    [ 84.870] (==) Matched ati as autoconfigured driver 0
    [ 84.870] (==) Matched ati as autoconfigured driver 1
    [ 84.870] (==) Matched modesetting as autoconfigured driver 2
    [ 84.870] (==) Matched fbdev as autoconfigured driver 3
    [ 84.870] (==) Matched vesa as autoconfigured driver 4
    [ 84.870] (==) Assigned the driver to the xf86ConfigLayout
    [ 84.870] (II) LoadModule: "ati"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 84.871] (II) Module ati: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 7.5.0
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "radeon"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 84.871] (II) Module radeon: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 7.5.0
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "modesetting"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 84.871] (II) Module modesetting: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.1, module version = 1.17.1
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "fbdev"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 84.871] (II) Module fbdev: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 0.4.4
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (II) LoadModule: "vesa"
    [ 84.871] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 84.871] (II) Module vesa: vendor="X.Org Foundation"
    [ 84.871] compiled for 1.17.0, module version = 2.3.2
    [ 84.871] Module class: X.Org Video Driver
    [ 84.871] ABI class: X.Org Video Driver, version 19.0
    [ 84.871] (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, SUMO2, 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, 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,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 84.876] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 84.876] (II) FBDEV: driver for framebuffer: fbdev
    [ 84.876] (II) VESA: driver for VESA chipsets: vesa
    [ 84.876] (++) using VT number 3
    [ 84.876] (--) controlling tty is VT number 3, auto-enabling KeepTty
    [ 84.876] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 84.876] (II) [KMS] Kernel modesetting enabled.
    [ 84.876] (WW) Falling back to old probe method for modesetting
    [ 84.876] (WW) Falling back to old probe method for fbdev
    [ 84.876] (II) Loading sub module "fbdevhw"
    [ 84.876] (II) LoadModule: "fbdevhw"
    [ 84.876] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 84.876] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 84.876] compiled for 1.17.1, module version = 0.0.2
    [ 84.876] ABI class: X.Org Video Driver, version 19.0
    [ 84.876] (WW) Falling back to old probe method for vesa
    [ 84.876] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 84.876] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen" for depth/fbbpp 24/32
    [ 84.876] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 84.876] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 84.876] (==) RADEON(0): Default visual is TrueColor
    [ 84.876] (==) RADEON(0): RGB weight 888
    [ 84.876] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 84.876] (--) RADEON(0): Chipset: "ATI Radeon 3000 Graphics" (ChipID = 0x9616)
    [ 84.876] (II) Loading sub module "dri2"
    [ 84.876] (II) LoadModule: "dri2"
    [ 84.876] (II) Module "dri2" already built-in
    [ 84.876] (II) Loading sub module "exa"
    [ 84.876] (II) LoadModule: "exa"
    [ 84.877] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 84.877] (II) Module exa: vendor="X.Org Foundation"
    [ 84.877] compiled for 1.17.1, module version = 2.6.0
    [ 84.877] ABI class: X.Org Video Driver, version 19.0
    [ 84.877] (II) RADEON(0): KMS Color Tiling: enabled
    [ 84.877] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 84.877] (II) RADEON(0): KMS Pageflipping: enabled
    [ 84.877] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 84.920] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 84.951] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 84.990] (II) RADEON(0): EDID for output VGA-0
    [ 85.021] (II) RADEON(0): EDID for output HDMI-0
    [ 85.021] (II) RADEON(0): Manufacturer: BBY Model: bb20 Serial#: 16843009
    [ 85.021] (II) RADEON(0): Year: 2012 Week: 0
    [ 85.021] (II) RADEON(0): EDID Version: 1.3
    [ 85.021] (II) RADEON(0): Digital Display Input
    [ 85.021] (II) RADEON(0): DFP 1.x compatible TMDS
    [ 85.021] (II) RADEON(0): Max Image Size [cm]: horiz.: 44 vert.: 25
    [ 85.021] (II) RADEON(0): Gamma: 2.20
    [ 85.021] (II) RADEON(0): DPMS capabilities: Off
    [ 85.021] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 85.021] (II) RADEON(0): First detailed timing is preferred mode
    [ 85.021] (II) RADEON(0): redX: 0.645 redY: 0.331 greenX: 0.335 greenY: 0.621
    [ 85.021] (II) RADEON(0): blueX: 0.152 blueY: 0.053 whiteX: 0.313 whiteY: 0.329
    [ 85.021] (II) RADEON(0): Supported established timings:
    [ 85.021] (II) RADEON(0): 720x400@70Hz
    [ 85.021] (II) RADEON(0): 640x480@60Hz
    [ 85.021] (II) RADEON(0): 640x480@67Hz
    [ 85.021] (II) RADEON(0): 640x480@72Hz
    [ 85.021] (II) RADEON(0): 640x480@75Hz
    [ 85.021] (II) RADEON(0): 800x600@56Hz
    [ 85.021] (II) RADEON(0): 800x600@60Hz
    [ 85.021] (II) RADEON(0): 800x600@72Hz
    [ 85.021] (II) RADEON(0): 800x600@75Hz
    [ 85.021] (II) RADEON(0): 832x624@75Hz
    [ 85.021] (II) RADEON(0): 1024x768@60Hz
    [ 85.021] (II) RADEON(0): 1024x768@70Hz
    [ 85.021] (II) RADEON(0): 1024x768@75Hz
    [ 85.021] (II) RADEON(0): 1280x1024@75Hz
    [ 85.021] (II) RADEON(0): 1152x864@75Hz
    [ 85.021] (II) RADEON(0): Manufacturer's mask: 0
    [ 85.021] (II) RADEON(0): Supported standard timings:
    [ 85.021] (II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 85.021] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 85.021] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 85.021] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 75 vid: 3989
    [ 85.021] (II) RADEON(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 85.021] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 85.021] (II) RADEON(0): Supported detailed timing:
    [ 85.021] (II) RADEON(0): clock: 97.8 MHz Image Size: 442 x 249 mm
    [ 85.021] (II) RADEON(0): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1760 h_border: 0
    [ 85.021] (II) RADEON(0): v_active: 900 v_sync: 903 v_sync_end 908 v_blanking: 926 v_border: 0
    [ 85.021] (II) RADEON(0): Supported detailed timing:
    [ 85.021] (II) RADEON(0): clock: 85.5 MHz Image Size: 442 x 249 mm
    [ 85.021] (II) RADEON(0): h_active: 1360 h_sync: 1424 h_sync_end 1536 h_blank_end 1792 h_border: 0
    [ 85.021] (II) RADEON(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 795 v_border: 0
    [ 85.021] (II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 155 MHz
    [ 85.021] (II) RADEON(0): Monitor name: NS-20EM50A13
    [ 85.021] (II) RADEON(0): EDID (in hex):
    [ 85.021] (II) RADEON(0): 00ffffffffffff00085920bb01010101
    [ 85.021] (II) RADEON(0): 00160103812c19782a3c25a554559f27
    [ 85.021] (II) RADEON(0): 0d5054bfef808180714f8140950f9500
    [ 85.021] (II) RADEON(0): 81c0010101012f2640a060841a303020
    [ 85.021] (II) RADEON(0): 3500baf91000001a662150b051001b30
    [ 85.021] (II) RADEON(0): 40703600baf91000001e000000fd0037
    [ 85.022] (II) RADEON(0): 4c1e520f000a202020202020000000fc
    [ 85.022] (II) RADEON(0): 004e532d3230454d35304131330a00a6
    [ 85.022] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 85.022] (II) RADEON(0): Modeline "1600x900"x60.0 97.75 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.5 kHz eP)
    [ 85.022] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 85.022] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 85.022] (II) RADEON(0): Output VGA-0 disconnected
    [ 85.022] (II) RADEON(0): Output HDMI-0 connected
    [ 85.022] (II) RADEON(0): Using exact sizes for initial modes
    [ 85.022] (II) RADEON(0): Output HDMI-0 using initial mode 1600x900
    [ 85.022] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 85.022] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:fa3b000
    [ 85.022] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 85.022] (==) RADEON(0): DPI set to (96, 96)
    [ 85.022] (II) Loading sub module "fb"
    [ 85.022] (II) LoadModule: "fb"
    [ 85.022] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 85.022] (II) Module fb: vendor="X.Org Foundation"
    [ 85.022] compiled for 1.17.1, module version = 1.0.0
    [ 85.022] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 85.022] (II) Loading sub module "ramdac"
    [ 85.022] (II) LoadModule: "ramdac"
    [ 85.022] (II) Module "ramdac" already built-in
    [ 85.022] (II) UnloadModule: "modesetting"
    [ 85.022] (II) Unloading modesetting
    [ 85.022] (II) UnloadModule: "fbdev"
    [ 85.022] (II) Unloading fbdev
    [ 85.022] (II) UnloadSubModule: "fbdevhw"
    [ 85.022] (II) Unloading fbdevhw
    [ 85.022] (II) UnloadModule: "vesa"
    [ 85.022] (II) Unloading vesa
    [ 85.022] (--) Depth 24 pixmap format is 32 bpp
    [ 85.023] (II) RADEON(0): [DRI2] Setup complete
    [ 85.023] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 85.023] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 85.023] (II) RADEON(0): Front buffer size: 5652K
    [ 85.023] (II) RADEON(0): VRAM usage limit set to 225496K
    [ 85.023] (==) RADEON(0): Backing store enabled
    [ 85.023] (II) RADEON(0): Direct rendering enabled
    [ 85.023] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 85.023] (II) EXA(0): Driver registered support for the following operations:
    [ 85.023] (II) Solid
    [ 85.023] (II) Copy
    [ 85.023] (II) Composite (RENDER acceleration)
    [ 85.023] (II) UploadToScreen
    [ 85.023] (II) DownloadFromScreen
    [ 85.023] (II) RADEON(0): Acceleration enabled
    [ 85.023] (==) RADEON(0): DPMS enabled
    [ 85.023] (==) RADEON(0): Silken mouse enabled
    [ 85.023] (II) RADEON(0): Set up textured video
    [ 85.023] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 85.023] (II) RADEON(0): [XvMC] Extension initialized.
    [ 85.023] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 85.023] (WW) RADEON(0): Option "PasswordFile" is not used
    [ 85.023] (--) RandR disabled
    [ 85.047] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 85.047] (II) AIGLX: enabled GLX_ARB_create_context
    [ 85.047] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 85.047] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 85.047] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 85.047] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 85.047] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 85.047] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 85.047] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 85.048] (II) AIGLX: Loaded and initialized r600
    [ 85.048] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 85.048] (II) RADEON(0): Setting screen physical size to 423 x 238
    [ 85.088] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 85.088] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 85.088] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 85.088] (II) LoadModule: "evdev"
    [ 85.088] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 85.089] (II) Module evdev: vendor="X.Org Foundation"
    [ 85.089] compiled for 1.16.2, module version = 2.9.1
    [ 85.089] Module class: X.Org XInput Driver
    [ 85.089] ABI class: X.Org XInput driver, version 21.0
    [ 85.089] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 13 paused 0
    [ 85.090] (II) Using input driver 'evdev' for 'Power Button'
    [ 85.090] (**) Power Button: always reports core events
    [ 85.090] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 85.090] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 85.090] (--) evdev: Power Button: Found keys
    [ 85.090] (II) evdev: Power Button: Configuring as keyboard
    [ 85.090] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 85.090] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 85.090] (**) Option "xkb_rules" "evdev"
    [ 85.090] (**) Option "xkb_model" "pc104"
    [ 85.090] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.123] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 85.123] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 85.123] (**) Power Button: Applying InputClass "keyboard-layout"
    [ 85.124] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 14 paused 0
    [ 85.124] (II) Using input driver 'evdev' for 'Power Button'
    [ 85.124] (**) Power Button: always reports core events
    [ 85.124] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 85.124] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 85.124] (--) evdev: Power Button: Found keys
    [ 85.124] (II) evdev: Power Button: Configuring as keyboard
    [ 85.124] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event0"
    [ 85.124] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 85.124] (**) Option "xkb_rules" "evdev"
    [ 85.124] (**) Option "xkb_model" "pc104"
    [ 85.124] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.125] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/event9)
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: Applying InputClass "evdev pointer catchall"
    [ 85.125] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 15 paused 0
    [ 85.125] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:1028'
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: always reports core events
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: Device: "/dev/input/event9"
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Vendor 0x46d Product 0xc52b
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found 20 mouse buttons
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found scroll wheel(s)
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found relative axes
    [ 85.125] (--) evdev: Logitech Unifying Device. Wireless PID:1028: Found x and y relative axes
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Configuring as mouse
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: Adding scrollwheel support
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: YAxisMapping: buttons 4 and 5
    [ 85.125] (**) evdev: Logitech Unifying Device. Wireless PID:1028: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 85.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0006/input/input12/event9"
    [ 85.125] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:1028" (type: MOUSE, id 8)
    [ 85.125] (II) evdev: Logitech Unifying Device. Wireless PID:1028: initialized for relative axes.
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) keeping acceleration scheme 1
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration profile 0
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration factor: 2.000
    [ 85.125] (**) Logitech Unifying Device. Wireless PID:1028: (accel) acceleration threshold: 4
    [ 85.126] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:1028 (/dev/input/mouse1)
    [ 85.126] (II) No input driver specified, ignoring this device.
    [ 85.126] (II) This device may have been added with another device file.
    [ 85.126] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event7)
    [ 85.126] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 85.126] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.126] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 16 paused 0
    [ 85.126] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.126] (**) Generic USB Keyboard: always reports core events
    [ 85.126] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event7"
    [ 85.126] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 85.126] (--) evdev: Generic USB Keyboard: Found keys
    [ 85.126] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 85.126] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-3/1-3:1.0/0003:040B:2000.0004/input/input10/event7"
    [ 85.126] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 9)
    [ 85.126] (**) Option "xkb_rules" "evdev"
    [ 85.126] (**) Option "xkb_model" "pc104"
    [ 85.126] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.127] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/event8)
    [ 85.127] (**) Generic USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 85.127] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.127] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 17 paused 0
    [ 85.127] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.127] (**) Generic USB Keyboard: always reports core events
    [ 85.127] (**) evdev: Generic USB Keyboard: Device: "/dev/input/event8"
    [ 85.127] (--) evdev: Generic USB Keyboard: Vendor 0x40b Product 0x2000
    [ 85.127] (--) evdev: Generic USB Keyboard: Found scroll wheel(s)
    [ 85.127] (II) evdev: Generic USB Keyboard: Forcing buttons for scroll wheel(s)
    [ 85.127] (--) evdev: Generic USB Keyboard: Found relative axes
    [ 85.127] (--) evdev: Generic USB Keyboard: Found x and y relative axes
    [ 85.127] (--) evdev: Generic USB Keyboard: Found keys
    [ 85.127] (II) evdev: Generic USB Keyboard: Configuring as mouse
    [ 85.127] (II) evdev: Generic USB Keyboard: Configuring as keyboard
    [ 85.127] (II) evdev: Generic USB Keyboard: Adding scrollwheel support
    [ 85.127] (**) evdev: Generic USB Keyboard: YAxisMapping: buttons 4 and 5
    [ 85.127] (**) evdev: Generic USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 85.127] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb1/1-3/1-3:1.1/0003:040B:2000.0005/input/input11/event8"
    [ 85.127] (II) XINPUT: Adding extended input device "Generic USB Keyboard" (type: KEYBOARD, id 10)
    [ 85.127] (**) Option "xkb_rules" "evdev"
    [ 85.127] (**) Option "xkb_model" "pc104"
    [ 85.127] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.128] (II) evdev: Generic USB Keyboard: initialized for relative axes.
    [ 85.128] (**) Generic USB Keyboard: (accel) keeping acceleration scheme 1
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration profile 0
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration factor: 2.000
    [ 85.128] (**) Generic USB Keyboard: (accel) acceleration threshold: 4
    [ 85.128] (II) config/udev: Adding input device Generic USB Keyboard (/dev/input/mouse0)
    [ 85.128] (**) Generic USB Keyboard: Applying InputClass "keyboard-layout"
    [ 85.128] (II) Using input driver 'evdev' for 'Generic USB Keyboard'
    [ 85.128] (**) Generic USB Keyboard: always reports core events
    [ 85.128] (**) evdev: Generic USB Keyboard: Device: "/dev/input/mouse0"
    [ 85.128] (EE) evdev: Generic USB Keyboard: Unable to query fd: Inappropriate ioctl for device
    [ 85.220] (EE) PreInit returned 2 for "Generic USB Keyboard"
    [ 85.220] (II) UnloadModule: "evdev"
    [ 85.220] (II) config/udev: Adding input device HP Webcam HD-2200 (/dev/input/event10)
    [ 85.220] (**) HP Webcam HD-2200: Applying InputClass "evdev keyboard catchall"
    [ 85.220] (**) HP Webcam HD-2200: Applying InputClass "keyboard-layout"
    [ 85.221] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 18 paused 0
    [ 85.221] (II) Using input driver 'evdev' for 'HP Webcam HD-2200'
    [ 85.221] (**) HP Webcam HD-2200: always reports core events
    [ 85.221] (**) evdev: HP Webcam HD-2200: Device: "/dev/input/event10"
    [ 85.221] (--) evdev: HP Webcam HD-2200: Vendor 0x3f0 Product 0xa707
    [ 85.221] (--) evdev: HP Webcam HD-2200: Found keys
    [ 85.221] (II) evdev: HP Webcam HD-2200: Configuring as keyboard
    [ 85.221] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb6/6-5/6-5:1.0/input/input13/event10"
    [ 85.222] (II) XINPUT: Adding extended input device "HP Webcam HD-2200" (type: KEYBOARD, id 11)
    [ 85.222] (**) Option "xkb_rules" "evdev"
    [ 85.222] (**) Option "xkb_model" "pc104"
    [ 85.222] (**) Option "xkb_layout" "us, gb, ru, ca, fr"
    [ 85.223] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event6)
    [ 85.223] (II) No input driver specified, ignoring this device.
    [ 85.223] (II) This device may have been added with another device file.
    [ 85.223] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event5)
    [ 85.223] (II) No input driver specified, ignoring this device.
    [ 85.223] (II) This device may have been added with another device file.
    [ 85.224] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event4)
    [ 85.224] (II) No input driver specified, ignoring this device.
    [ 85.224] (II) This device may have been added with another device file.
    [ 85.224] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event3)
    [ 85.225] (II) No input driver specified, ignoring this device.
    [ 85.225] (II) This device may have been added with another device file.
    [ 85.225] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event2)
    [ 85.225] (II) No input driver specified, ignoring this device.
    [ 85.225] (II) This device may have been added with another device file.
    journalctl -b
    Mar 18 10:05:02 arch-server kernel: 00000-9FFFF write-back
    Mar 18 10:05:02 arch-server kernel: A0000-EFFFF uncachable
    Mar 18 10:05:02 arch-server kernel: F0000-FFFFF write-protect
    Mar 18 10:05:02 arch-server kernel: MTRR variable ranges enabled:
    Mar 18 10:05:02 arch-server kernel: 0 base 000000000000 mask FFFF80000000 write-back
    Mar 18 10:05:02 arch-server kernel: 1 base 000080000000 mask FFFFC0000000 write-back
    Mar 18 10:05:02 arch-server kernel: 2 base 0000C0000000 mask FFFFF0000000 write-back
    Mar 18 10:05:02 arch-server kernel: 3 disabled
    Mar 18 10:05:02 arch-server kernel: 4 disabled
    Mar 18 10:05:02 arch-server kernel: 5 disabled
    Mar 18 10:05:02 arch-server kernel: 6 disabled
    Mar 18 10:05:02 arch-server kernel: 7 disabled
    Mar 18 10:05:02 arch-server kernel: TOM2: 0000000430000000 aka 17152M
    Mar 18 10:05:03 arch-server kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 18 10:05:03 arch-server kernel: e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    Mar 18 10:05:03 arch-server kernel: e820: last_pfn = 0xcff90 max_arch_pfn = 0x400000000
    Mar 18 10:05:03 arch-server kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Mar 18 10:05:03 arch-server kernel: Scanning 1 areas for low memory corruption
    Mar 18 10:05:03 arch-server kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Mar 18 10:05:03 arch-server kernel: Using GB pages for direct mapping
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x00000000-0x000fffff] page 4k
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b3e000, 0x01b3efff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b40000, 0x01b40fff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x41fe00000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x41fe00000-0x41fffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: BRK [0x01b41000, 0x01b41fff] PGTABLE
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x41c000000-0x41fdfffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x41c000000-0x41fdfffff] page 2M
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x400000000-0x41bffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x400000000-0x41bffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x00100000-0xcff8ffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x00100000-0x001fffff] page 4k
    Mar 18 10:05:03 arch-server kernel: [mem 0x00200000-0x3fffffff] page 2M
    Mar 18 10:05:03 arch-server kernel: [mem 0x40000000-0xbfffffff] page 1G
    Mar 18 10:05:03 arch-server kernel: [mem 0xc0000000-0xcfdfffff] page 2M
    Mar 18 10:05:03 arch-server kernel: [mem 0xcfe00000-0xcff8ffff] page 4k
    Mar 18 10:05:03 arch-server kernel: init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    Mar 18 10:05:03 arch-server kernel: [mem 0x100000000-0x3ffffffff] page 1G
    Mar 18 10:05:03 arch-server kernel: RAMDISK: [mem 0x3784e000-0x37c1efff]
    Mar 18 10:05:03 arch-server kernel: ACPI: RSDP 00000000000f8d00 000014 (v00 ACPIAM)
    Mar 18 10:05:03 arch-server kernel: ACPI: RSDT 00000000cff90000 00003C (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: FACP 00000000cff90200 000084 (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20131218/
    Mar 18 10:05:03 arch-server kernel: ACPI: DSDT 00000000cff90660 009DF0 (v01 A7641 A7641100 00000100 INTL 20051117)
    Mar 18 10:05:03 arch-server kernel: ACPI: FACS 00000000cff9e000 000040
    Mar 18 10:05:03 arch-server kernel: ACPI: APIC 00000000cff90390 00010C (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: MCFG 00000000cff904a0 00003C (v01 7641MS OEMMCFG 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: OEMB 00000000cff9e040 000072 (v01 7641MS A7641100 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: HPET 00000000cff9a660 000038 (v01 7641MS OEMHPET 20130428 MSFT 00000097)
    Mar 18 10:05:03 arch-server kernel: ACPI: SSDT 00000000cff9a6a0 000D40 (v01 A M I POWERNOW 00000001 AMD 00000001)
    Mar 18 10:05:03 arch-server kernel: ACPI: Local APIC address 0xfee00000
    Mar 18 10:05:03 arch-server kernel: No NUMA configuration found
    Mar 18 10:05:03 arch-server kernel: Faking a node at [mem 0x0000000000000000-0x000000041fffffff]
    Mar 18 10:05:03 arch-server kernel: Initmem setup node 0 [mem 0x00000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: NODE_DATA [mem 0x41fff9000-0x41fffdfff]
    Mar 18 10:05:03 arch-server kernel: [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040fa00000-ffff88041f5fffff] on node 0
    Mar 18 10:05:03 arch-server kernel: Zone ranges:
    Mar 18 10:05:03 arch-server kernel: DMA [mem 0x00001000-0x00ffffff]
    Mar 18 10:05:03 arch-server kernel: DMA32 [mem 0x01000000-0xffffffff]
    Mar 18 10:05:03 arch-server kernel: Normal [mem 0x100000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: Movable zone start for each node
    Mar 18 10:05:03 arch-server kernel: Early memory node ranges
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x00001000-0x0009efff]
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x00100000-0xcff8ffff]
    Mar 18 10:05:03 arch-server kernel: node 0: [mem 0x100000000-0x41fffffff]
    Mar 18 10:05:03 arch-server kernel: On node 0 totalpages: 4128558
    Mar 18 10:05:03 arch-server kernel: DMA zone: 64 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: DMA zone: 21 pages reserved
    Mar 18 10:05:03 arch-server kernel: DMA zone: 3998 pages, LIFO batch:0
    Mar 18 10:05:03 arch-server kernel: DMA32 zone: 13247 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: DMA32 zone: 847760 pages, LIFO batch:31
    Mar 18 10:05:03 arch-server kernel: Normal zone: 51200 pages used for memmap
    Mar 18 10:05:03 arch-server kernel: Normal zone: 3276800 pages, LIFO batch:31
    Mar 18 10:05:03 arch-server kernel: ACPI: PM-Timer IO Port: 0x808
    Mar 18 10:05:03 arch-server kernel: ACPI: Local APIC address 0xfee00000
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x86] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x87] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x88] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x89] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x8a] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x8b] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x8c] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x8d] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x8e] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x8f] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x90] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x91] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x92] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x93] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x94] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x95] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x96] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x97] disabled)
    Mar 18 10:05:03 arch-server kernel: ACPI: IOAPIC (id[0x14] address[0xfec00000] gsi_base[0])
    Mar 18 10:05:03 arch-server kernel: IOAPIC[0]: apic_id 20, version 33, address 0xfec00000, GSI 0-23
    Mar 18 10:05:03 arch-server kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 18 10:05:03 arch-server kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ0 used by override.
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ2 used by override.
    Mar 18 10:05:03 arch-server kernel: ACPI: IRQ9 used by override.
    Mar 18 10:05:03 arch-server kernel: Using ACPI (MADT) for SMP configuration information
    Mar 18 10:05:03 arch-server kernel: ACPI: HPET id: 0x8300 base: 0xfed00000
    Mar 18 10:05:03 arch-server kernel: smpboot: Allowing 24 CPUs, 20 hotplug CPUs
    Mar 18 10:05:03 arch-server kernel: nr_irqs_gsi: 40
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000e3fff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcff90000-0xcff9dfff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcff9e000-0xcffdffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xcffe0000-0xcfffffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xd0000000-0xffdfffff]
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    Mar 18 10:05:03 arch-server kernel: e820: [mem 0xd0000000-0xffdfffff] available for PCI devices
    Mar 18 10:05:03 arch-server kernel: Booting paravirtualized kernel on bare hardware
    Mar 18 10:05:03 arch-server kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:24 nr_node_ids:1
    Mar 18 10:05:03 arch-server kernel: PERCPU: Embedded 27 pages/cpu @ffff88040f600000 s81664 r8192 d20736 u131072
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: s81664 r8192 d20736 u131072 alloc=1*2097152
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    Mar 18 10:05:03 arch-server kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 -- -- -- -- -- -- -- --
    Mar 18 10:05:03 arch-server kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4064026
    Mar 18 10:05:03 arch-server kernel: Policy zone: Normal
    Mar 18 10:05:03 arch-server kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=d6352b14-5ca7-476a-9f43-2bc25278effd rw quiet
    Mar 18 10:05:03 arch-server kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Mar 18 10:05:03 arch-server kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Mar 18 10:05:03 arch-server kernel: Checking aperture...
    Mar 18 10:05:03 arch-server kernel: No AGP bridge found
    Mar 18 10:05:03 arch-server kernel: Node 0: aperture @ 0 size 32 MB
    Mar 18 10:05:03 arch-server kernel: Your BIOS doesn't leave a aperture memory hole
    Mar 18 10:05:03 arch-server kernel: Please enable the IOMMU option in the BIOS setup
    Mar 18 10:05:03 arch-server kernel: This costs you 64 MB of RAM
    Mar 18 10:05:03 arch-server kernel: Mapping aperture over 65536 KB of RAM @ c4000000
    Mar 18 10:05:03 arch-server kernel: PM: Registered nosave memory: [mem 0xc4000000-0xc7ffffff]
    Mar 18 10:05:03 arch-server kernel: Memory: 16106196K/16514232K available (5183K kernel code, 859K rwdata, 1640K rodata, 1128K init, 1300K bss, 408036K reserv
    Mar 18 10:05:03 arch-server kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1
    Mar 18 10:05:03 arch-server kernel: Hierarchical RCU implementation.
    Mar 18 10:05:03 arch-server kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=24.
    Mar 18 10:05:03 arch-server kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
    Mar 18 10:05:03 arch-server kernel: NR_IRQS:8448 nr_irqs:872 16
    Mar 18 10:05:03 arch-server kernel: spurious 8259A interrupt: IRQ7.
    Mar 18 10:05:03 arch-server kernel: Console: colour dummy device 80x25
    Mar 18 10:05:03 arch-server kernel: console [tty0] enabled
    Mar 18 10:05:03 arch-server kernel: allocated 66060288 bytes of page_cgroup
    Mar 18 10:05:03 arch-server kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mar 18 10:05:03 arch-server kernel: hpet clockevent registered
    Mar 18 10:05:03 arch-server kernel: tsc: Fast TSC calibration using PIT
    Mar 18 10:05:03 arch-server kernel: tsc: Detected 4199.946 MHz processor
    Mar 18 10:05:03 arch-server kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 8399.89 BogoMIPS (lpj=41999460)
    Mar 18 10:05:03 arch-server kernel: pid_max: default: 32768 minimum: 301
    Mar 18 10:05:03 arch-server kernel: ACPI: Core revision 20131218
    Mar 18 10:05:03 arch-server kernel: ACPI: All ACPI Tables successfully acquired
    Mar 18 10:05:03 arch-server kernel: Security Framework initialized
    Mar 18 10:05:03 arch-server kernel: Yama: becoming mindful.
    Mar 18 10:05:03 arch-server kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    Mar 18 10:05:03 arch-server kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Mar 18 10:05:03 arch-server kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    Mar 18 10:05:03 arch-server kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys memory
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys devices
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys freezer
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys net_cls
    Mar 18 10:05:03 arch-server kernel: Initializing cgroup subsys blkio
    Mar 18 10:05:03 arch-server kernel: tseg: 0000000000
    Mar 18 10:05:03 arch-server kernel: CPU: Physical Processor ID: 0
    Mar 18 10:05:03 arch-server kernel: CPU: Processor Core ID: 0
    Mar 18 10:05:03 arch-server kernel: mce: CPU supports 7 MCE banks
    Mar 18 10:05:03 arch-server kernel: LVT offset 1 assigned for vector 0xf9
    Mar 18 10:05:03 arch-server kernel: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
    tlb_flushall_shift: 6
    Mar 18 10:05:03 arch-server kernel: Freeing SMP alternatives memory: 20K (ffffffff819f2000 - ffffffff819f7000)
    Mar 18 10:05:03 arch-server kernel: ftrace: allocating 20141 entries in 79 pages
    Mar 18 10:05:03 arch-server kernel: Switched APIC routing to physical flat.
    Mar 18 10:05:03 arch-server kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mar 18 10:05:03 arch-server kernel: smpboot: CPU0: AMD FX(tm)-4170 Quad-Core Processor (fam: 15, model: 01, stepping: 02)
    Mar 18 10:05:03 arch-server kernel: Performance Events: Fam15h core perfctr, AMD PMU driver.
    Mar 18 10:05:03 arch-server kernel: ... version: 0
    Mar 18 10:05:03 arch-server kernel: ... bit width: 48
    Mar 18 10:05:03 arch-server kernel: ... generic registers: 6
    Mar 18 10:05:03 arch-server kernel: ... value mask: 0000ffffffffffff
    Mar 18 10:05:03 arch-server kernel: ... max period: 00007fffffffffff
    Mar 18 10:05:03 arch-server kernel: ... fixed-purpose events: 0
    Mar 18 10:05:03 arch-server kernel: ... event mask: 000000000000003f
    Mar 18 10:05:03 arch-server kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mar 18 10:05:03 arch-server kernel: x86: Booting SMP configuration:
    Mar 18 10:05:03 arch-server kernel: .... node #0, CPUs: #1 #2 #3
    Mar 18 10:05:03 arch-server kernel: x86: Booted up 1 node, 4 CPUs
    Mar 18 10:05:03 arch-server kernel: smpboot: Total of 4 processors activated (33599.56 BogoMIPS)
    Mar 18 10:05:03 arch-server kernel: devtmpfs: initialized
    Mar 18 10:05:03 arch-server kernel: PM: Registering ACPI NVS region [mem 0xcff9e000-0xcffdffff] (270336 bytes)
    Mar 18 10:05:03 arch-server kernel: pinctrl core: initialized pinctrl subsystem
    Mar 18 10:05:03 arch-server kernel: RTC time: 15:04:53, date: 03/18/15
    Mar 18 10:05:03 arch-server kernel: NET: Registered protocol family 16
    Mar 18 10:05:03 arch-server kernel: cpuidle: using governor ladder
    Mar 18 10:05:03 arch-server kernel: cpuidle: using governor menu
    Mar 18 10:05:03 arch-server kernel: ACPI: bus type PCI registered
    Mar 18 10:05:03 arch-server kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 18 10:05:03 arch-server kernel: PCI: not using MMCONFIG
    Mar 18 10:05:03 arch-server kernel: PCI: Using configuration type 1 for base access
    Mar 18 10:05:03 arch-server kernel: PCI: Using configuration type 1 for extended access
    Mar 18 10:05:03 arch-server kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Mar 18 10:05:03 arch-server kernel: mtrr: probably your BIOS does not setup all CPUs.
    Mar 18 10:05:03 arch-server kernel: mtrr: corrected configuration.
    Mar 18 10:05:03 arch-server kernel: bio: create slab <bio-0> at 0
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Module Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Processor Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mar 18 10:05:03 arch-server kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mar 18 10:05:03 arch-server kernel: ACPI: Executed 4 blocks of module-level executable AML code
    Mar 18 10:05:03 arch-server kernel: ACPI: Interpreter enabled
    Mar 18 10:05:03 arch-server kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    Mar 18 10:05:03 arch-server kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131218/hwxface-580)
    Mar 18 10:05:03 arch-server kernel: ACPI: (supports S0 S1 S4 S5)
    Mar 18 10:05:03 arch-server kernel: ACPI: Using IOAPIC for interrupt routing
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mar 18 10:05:03 arch-server kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Mar 18 10:05:03 arch-server kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mar 18 10:05:03 arch-server kernel: ACPI: No dock devices found.
    Mar 18 10:05:03 arch-server kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mar 18 10:05:03 arch-server kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Mar 18 10:05:03 arch-server kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Mar 18 10:05:03 arch-server kernel: PCI host bridge to bus 0000:00
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
    Mar 18 10:05:03 arch-server kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: [1022:9605] type 01 class 0x060400
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:05.0: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x10: [io 0xc000-0xc007]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x14: [io 0xb000-0xb003]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x18: [io 0xa000-0xa007]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x1c: [io 0x9000-0x9003]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x20: [io 0x8000-0x800f]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfe9ffc00-0xfe9fffff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfe9fe000-0xfe9fefff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: reg 0x10: [mem 0xfe9fd000-0xfe9fdfff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.1: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfe9ff800-0xfe9ff8ff]
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: supports D1 D2
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Mar 18 10:05:03 arch-server kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfe9fc000-0xfe9fcfff]
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: reg 0x10: [mem 0xfe9fb000-0xfe9fbfff]
    Mar 18 10:05:04 arch-server kernel: pci 0000:00:13.1: System wakeup disabled by ACP

  • Pacman + -Syu = system freeze

    I cannot post console output because system freeze so i cannot cut& paste. My pacman output is localized so my translation may not be 100% accurate
    After i pacman -Syu
    i get a list of packages hit y
    they get downloaded
    then pacman is checking dependencies...done
    then
    i get checking package integrity and
    then i get something like(note translation may be not exact)
    memory security violated
    then my system freeze...
    I tried to upp one package by pacman -S and it was done okay
    Really do not know what is going on
    edit: my box is preety up-to-date i did full upgrade 2-3 days ago. I'm running stock kernel form current ,i'm not using testing at all.
    Last edited by sula (2007-08-18 22:26:59)

    Well, run a memtest (there is on on the arch cd, boot it and run (memtest86)

  • KDE never finish to start after pacman -Syu [SOLVED]

    Hi to All.
    I have upgraded my system with pacman -Syu (I have to upgrade first broadcom-wl).
    after upgrading to new kernel, I reinstalled pacman and nvidia and nvidia-utils
    started kde and it begins to start session, but 4 processs get full cpu and never ends the session init
    the processes are kbuildsyscoca (2 processes), kded4 and kconf_update
    If I start twm instead of kde it works
    I readed the forums and althoug not seen something similar, decide to downgrade kernel, and recompile (reinstall broadcom-wl, and nvidia drivers)
    then tested again and the same results.
    last test was to move my .kde and .kde4 folders to a backup and start kde again (starting from startx and not kdm)
    this time it launched a lot (more than 100 kconf_update trying to update some stuff of kopete)
    then deinstalled kopete and all kde-meta packages that are not needed now, but still have the same problem,
    the 4 processes keep running and the desktop never comes up. (black screen with cursor I can move)
    anyone with similar sympthoms?
    any thing I can try?
    as a summary x seems to work fine (twm starts)
    wireless works fine
    nvidia works fine
    only kde get stuck ant the init
    any help appreciated.
    Thanks
    Last edited by clmates (2009-11-03 18:32:51)

    Hi.
    I will post here by parts as the post is too long
    test with other user in my system and with root all fails with the same sympthoms
    I attach here the logs of the following test done with another user (charo)
    steps.
    /etc/rc.d/kdm stop
    rm /var/log/kdm.log
    rm /var/log/xorg.o.mslog
    rm /home/charo/.xsession-errors
    rm -r /home/charo/.kde
    rm -r /home/charo/.kde4
    rm -r /tmp/kde-charo
    rm -r /tmp/ksocket-charo
    rm -r /var/tmp/kdecache-charo
    so If I not forhet none, all stuff regarding kde for user charo is non existant
    then started kdm
    /etc/rc.d/kdm start
    then login with user charo in a standard kde4 session
    the splash screen comes up and only the 2 fisrt icons come up (between the first and the second almost 2 minutes passes), then the screen goes blue (default background), and a powerdevil error is shown, we can move the mouse,  and clicking in the error it dissapear, but eh screen keeps blue without any data (icons, applets, panels, etc), no element is shown
    here are the logs
    /var/log/Xorg.0.log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.3.901 (1.6.4 RC 1)
    Release Date: 2009-8-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux aragorn 2.6.30-ARCH #1 SMP PREEMPT Wed Sep 9 14:16:44 CEST 2009 x86_64
    Build Date: 04 September 2009 05:45:43PM
    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: Wed Oct 21 20:57:24 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "SynapticsTouchpad"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is disabled
    (II) Cannot locate a core pointer device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x1d40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI: (0:0:10:3) 10de:0271:103c:30b7 nVidia Corporation MCP51 PMU rev 163, Mem @ 0xc0040000/262144
    (--) PCI:*(0:5:0:0) 10de:01d6:103c:30b7 nVidia Corporation G72M [GeForce Go 7200] rev 161, Mem @ 0xc7000000/16777216, 0xd0000000/268435456, 0xc6000000/16777216
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "freetype"
    (WW) Warning, couldn't open module freetype
    (II) UnloadModule: "freetype"
    (EE) Failed to load module "freetype" (module does not exist, 0)
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 190.40 Thu Oct 15 16:12:47 PDT 2009
    (II) Loading extension GLX
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) LoadModule: "synaptics"
    (II) Reloading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) NVIDIA dlloader X Driver 190.40 Thu Oct 15 15:08:33 PDT 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 05@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "HWcursor"
    (**) Oct 21 20:57:24 NVIDIA(0): Enabling RENDER acceleration
    (II) Oct 21 20:57:25 NVIDIA(0): NVIDIA GPU GeForce Go 7200 (G72) at PCI:5:0:0 (GPU-0)
    (--) Oct 21 20:57:25 NVIDIA(0): Memory: 262144 kBytes
    (--) Oct 21 20:57:25 NVIDIA(0): VideoBIOS: 05.72.22.41.c9
    (II) Oct 21 20:57:25 NVIDIA(0): Detected PCI Express Link width: 16X
    (--) Oct 21 20:57:25 NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) Oct 21 20:57:25 NVIDIA(0): Connected display device(s) on GeForce Go 7200 at PCI:5:0:0:
    (--) Oct 21 20:57:25 NVIDIA(0): LPL (DFP-0)
    (--) Oct 21 20:57:25 NVIDIA(0): LPL (DFP-0): 330.0 MHz maximum pixel clock
    (--) Oct 21 20:57:25 NVIDIA(0): LPL (DFP-0): Internal Dual Link LVDS
    (II) Oct 21 20:57:25 NVIDIA(0): Assigned Display Device: DFP-0
    (WW) Oct 21 20:57:25 NVIDIA(0): No valid modes for "1280x768"; removing.
    (WW) Oct 21 20:57:25 NVIDIA(0): No valid modes for "1280x720"; removing.
    (WW) Oct 21 20:57:25 NVIDIA(0): No valid modes for "1280x600"; removing.
    (WW) Oct 21 20:57:25 NVIDIA(0): No valid modes for "1024x600"; removing.
    (WW) Oct 21 20:57:25 NVIDIA(0): No valid modes for "768x576"; removing.
    (II) Oct 21 20:57:25 NVIDIA(0): Validated modes:
    (II) Oct 21 20:57:25 NVIDIA(0): "1280x800"
    (II) Oct 21 20:57:25 NVIDIA(0): "1024x768"
    (II) Oct 21 20:57:25 NVIDIA(0): "800x600"
    (II) Oct 21 20:57:25 NVIDIA(0): Virtual screen size determined to be 1280 x 800
    (--) Oct 21 20:57:25 NVIDIA(0): DPI set to (98, 96); computed from "UseEdidDpi" X config
    (--) Oct 21 20:57:25 NVIDIA(0): option
    (==) Oct 21 20:57:25 NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) Oct 21 20:57:25 NVIDIA(0): Initialized GPU GART.
    (II) Oct 21 20:57:25 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 20:57:25 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (II) Oct 21 20:57:25 NVIDIA(0): Setting mode "1280x800"
    (II) Loading extension NV-GLX
    (II) Oct 21 20:57:25 NVIDIA(0): Initialized OpenGL Acceleration
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) Oct 21 20:57:25 NVIDIA(0): Initialized X Rendering Acceleration
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) Option "dpms"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (WW) NVIDIA(0): Option "CalcAlgorithm" is not used
    (WW) NVIDIA(0): Option "PreferredMode" is not used
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) Synaptics touchpad driver version 1.1.3
    (--) SynapticsTouchpad auto-dev sets device to /dev/input/event8
    (**) Option "Device" "/dev/input/event8"
    (II) SynapticsTouchpad: x-axis range 1472 - 5472
    (II) SynapticsTouchpad: y-axis range 1408 - 4448
    (II) SynapticsTouchpad: pressure range 0 - 255
    (II) SynapticsTouchpad: finger width range 0 - 0
    (II) SynapticsTouchpad: buttons: left right middle double triple
    (**) Option "SHMConfig" "true"
    (**) Option "LeftEdge" "1700"
    (**) Option "RightEdge" "5300"
    (**) Option "TopEdge" "1700"
    (**) Option "BottomEdge" "4200"
    (**) Option "FingerLow" "25"
    (**) Option "FingerHigh" "30"
    (**) Option "MaxTapTime" "180"
    (**) Option "VertScrollDelta" "100"
    (**) Option "HorizScrollDelta" "100"
    (**) Option "VertEdgeScroll" "true"
    (**) Option "HorizEdgeScroll" "true"
    (**) Option "CornerCoasting" "true"
    (**) Option "VertTwoFingerScroll" "true"
    (**) Option "HorizTwoFingerScroll" "true"
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (**) Option "MinSpeed" "0.40"
    (**) Option "MaxSpeed" "0.80"
    (**) Option "AccelFactor" "0.0020"
    (**) Option "CoastingSpeed" "0.30"
    (--) SynapticsTouchpad: touchpad found
    (**) Option "AlwaysCore" "true"
    (**) Option "SendCoreEvents"
    (**) SynapticsTouchpad: always reports core events
    (II) XINPUT: Adding extended input device "SynapticsTouchpad" (type: TOUCHPAD)
    (**) SynapticsTouchpad: (accel) keeping acceleration scheme 1
    (**) SynapticsTouchpad: (accel) filter chain progression: 2.00
    (**) SynapticsTouchpad: (accel) filter stage 0: 20.00 ms
    (**) SynapticsTouchpad: (accel) set acceleration profile 0
    (--) SynapticsTouchpad: touchpad found
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 2.2.5
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) Synaptics touchpad driver version 1.1.3
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
    (**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
    (**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/hal: Adding input device USB 2.0 Camera
    (**) USB 2.0 Camera: always reports core events
    (**) USB 2.0 Camera: Device: "/dev/input/event7"
    (II) USB 2.0 Camera: Found keys
    (II) USB 2.0 Camera: Configuring as keyboard
    (II) XINPUT: Adding extended input device "USB 2.0 Camera" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) config/hal: Adding input device Sleep Button
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event5"
    (II) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event9"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event3"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "es"
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 20:59:19 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 20:59:19 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 20:59:19 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 20:59:36 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 20:59:36 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 20:59:36 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:00:27 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:00:27 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:00:27 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:01:50 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:01:50 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:01:50 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:02:32 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:02:32 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:02:32 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:03:17 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:03:17 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:03:17 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:04:25 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:04:25 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:04:25 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:15:04 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:15:04 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:15:04 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Oct 21 21:17:09 NVIDIA(0): Setting mode "1280x800"
    (II) Oct 21 21:17:10 NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) Oct 21 21:17:10 NVIDIA(0): enough to receive ACPI display change hotkey events.
    (--) SynapticsTouchpad: touchpad found
    (WW) SynPS/2 Synaptics TouchPad can't grab event device, errno=16
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) USB 2.0 Camera: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Sleep Button: Close
    (II) UnloadModule: "evdev"
    (II) USB 2.0 Camera: Close
    (II) UnloadModule: "evdev"
    (II) UnloadModule: "synaptics"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) UnloadModule: "synaptics"
    look at times, I started at 20:57, then the server gets to a "final" status at 20:59 t

  • Pacman -Syu killed network performance

    My system was mostly working fine, and I went on vacation for 2 weeks.  When I got back, I did a pacman -Syu (about 4 weeks worth of updates).  A lot was updated, and my Internet connection is unusably slow, but nothing else appears to have broken.  Google's search page takes 2+ minutes to load, and an actual search takes longer.
    I have a netbook, so I am sure this is a problem with my linux box, and not the router, cable modem, or cable company.  CPU and other resources don't seem to be used.
    I was (and still am) manually bringing up my network connection with dhcpcd when I rebooted before this problem happened.
    I essentially do not have a network on the machine affected, so I am limited in what I can do to troubleshoot this.  I have not been able to get another pacman -Syu to update successfully due to this issue.

    bvbellomo wrote:I have a netbook, so I am sure this is a problem with my linux box, and not the router, cable modem, or cable company
    Working for an ISP, I can assure you that you can never be sure that it's not your ISP.
    Give us some results of ping and traceroute to sites that refuse to work. Also ping your router to see where the slownes happens.

  • HT4623 The "Software Update" feature is not available in my Ipod 2nd Generation unit while the upgrade option in iTunes keeps on hanging while downloading the upgrade iOS (time out error). So, please tell me how I can upgrade the iOS.

    The "Software Update" feature is not available in my Ipod 2nd Generation unit while the upgrade option in iTunes keeps on hanging while downloading the upgrade iOS (time out error). So, please tell me how I can upgrade the iOS.

    The Settings>General>Software Update comes with iOS 5. The 2G can only go to iOS 4.2.1
    Try disabling the computer's security software during the download and update.

  • Root partition suddenly full while updating packages with Pacman

    Hello
    I'm not sure if this is a problem with Pacman, but my root partition seems to have become completely full while updating my system using pacman -Syu. Before updating anything, there seems to have been an update to a new version of Pacman (3.3.1-1) that needed to be installed before updating packages.
    In the middle of the updates, I got this error:
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    Also, I don't know if this is related, but I got a lot of 'not found' errors after that.
    The entire output from everything:
    ~ $ sudo pacman -Syu
    Password:
    :: Synchronizing package databases...
    core 34.6K 101.4K/s 00:00:00 [#####################] 100%
    extra 427.5K 394.3K/s 00:00:01 [#####################] 100%
    community 374.7K 362.2K/s 00:00:01 [#####################] 100%
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): pacman-3.3.1-1
    Total Download Size: 0.60 MB
    Total Installed Size: 2.10 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pacman-3.3.1-1-x86_64 618.9K 455.6K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) upgrading pacman [#####################] 100%
    ~ $ sudo 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 (42): taglib-extras-1.0.1-1 qt-4.5.3-2 liblastfm-0.3.0-4
    loudmouth-1.4.3-1 libmtp-0.3.7-1.1 amarok-2.2.0-1 apr-1.3.9-1
    db-4.8.24-1 apr-util-1.3.9-3 apache-2.2.13-3 bluez-4.54-1
    python-2.6.3-1 dbus-python-0.83.0-2.1 device-mapper-2.02.53-1
    eclipse-3.5.1-1 gpm-1.20.6-3 perl-5.10.1-3 groff-1.20.1-3
    vim-7.2.266-1 gvim-7.2.266-2 heimdal-1.2.1-7 inkscape-0.46-13
    iproute2-2.6.29-2 lib32-db-4.8.24-1 lib32-heimdal-1.2.1-7
    libical-0.44-1 libsasl-2.1.23-2 lm_sensors-3.1.1-2
    lvm2-2.02.53-1 nexuiz-data-2.5.2-1 nexuiz-2.5.2-1
    redland-1.0.9-4 openoffice-base-3.1.1-2 pam-1.0.4-2
    php-5.3.0-5 pstoedit-3.50-1 ruby-1.9.1_p243-2 soprano-2.3.1-1
    texlive-bin-2009.4-1 texlive-core-2009.15574-1 wget-1.12-1
    xchat-2.8.6-5
    Total Download Size: 1354.95 MB
    Total Installed Size: 2035.02 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    db-4.8.24-1-x86_64 4.7M 432.0K/s 00:00:11 [#####################] 100%
    device-mapper-2.02.... 479.0K 287.9K/s 00:00:02 [#####################] 100%
    gpm-1.20.6-3-x86_64 173.2K 243.7K/s 00:00:01 [#####################] 100%
    perl-5.10.1-3-x86_64 13.5M 412.5K/s 00:00:33 [#####################] 100%
    groff-1.20.1-3-x86_64 4.1M 365.7K/s 00:00:12 [#####################] 100%
    heimdal-1.2.1-7-x86_64 2.8M 368.5K/s 00:00:08 [#####################] 100%
    iproute2-2.6.29-2-x... 489.0K 303.8K/s 00:00:02 [#####################] 100%
    libsasl-2.1.23-2-x86_64 118.5K 252.4K/s 00:00:00 [#####################] 100%
    lvm2-2.02.53-1-x86_64 930.3K 327.3K/s 00:00:03 [#####################] 100%
    pam-1.0.4-2-x86_64 537.8K 289.5K/s 00:00:02 [#####################] 100%
    wget-1.12-1-x86_64 672.4K 308.0K/s 00:00:02 [#####################] 100%
    :: Retrieving packages from extra...
    qt-4.5.3-2-x86_64 26.9M 418.8K/s 00:01:06 [#####################] 100%
    liblastfm-0.3.0-4-x... 223.4K 252.0K/s 00:00:01 [#####################] 100%
    loudmouth-1.4.3-1-x... 80.8K 183.8K/s 00:00:00 [#####################] 100%
    libmtp-0.3.7-1.1-x86_64 439.4K 309.5K/s 00:00:01 [#####################] 100%
    amarok-2.2.0-1-x86_64 10.9M 486.0K/s 00:00:23 [#####################] 100%
    apr-1.3.9-1-x86_64 328.5K 332.4K/s 00:00:01 [#####################] 100%
    apr-util-1.3.9-3-x86_64 237.6K 322.3K/s 00:00:01 [#####################] 100%
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from archlinux.unixheads.org : Connection timed out
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    bluez-4.54-1-x86_64 671.6K 361.7K/s 00:00:02 [#####################] 100%
    python-2.6.3-1-x86_64 15.2M 442.0K/s 00:00:35 [#####################] 100%
    dbus-python-0.83.0-... 177.4K 225.6K/s 00:00:01 [#####################] 100%
    eclipse-3.5.1-1-x86_64 162.0M 457.1K/s 00:06:03 [#####################] 100%
    vim-7.2.266-1-x86_64 8.6M 437.9K/s 00:00:20 [#####################] 100%
    gvim-7.2.266-2-x86_64 1115.4K 216.9K/s 00:00:05 [#####################] 100%
    inkscape-0.46-13-x86_64 18.4M 464.6K/s 00:00:41 [#####################] 100%
    libical-0.44-1-x86_64 281.3K 283.7K/s 00:00:01 [#####################] 100%
    lm_sensors-3.1.1-2-... 133.2K 228.9K/s 00:00:01 [#####################] 100%
    redland-1.0.9-4-x86_64 307.4K 275.7K/s 00:00:01 [#####################] 100%
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/php-5.3.0-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/pstoedit-3.50-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/ruby-1.9.1_p243-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/soprano-2.3.1-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-bin-2009.4-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-core-2009.15574-1-any.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/xchat-2.8.6-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (File unavailable (e.g., file not found, no access))
    Errors occurred, no packages were upgraded.
    ~ $
    Also, I haven't restarted my system yet. Should I try and see what happens?
    Thanks!

    This happened to me recently. I could not restart my laptop properly due to lack of space on my root partition.
    The error during boot was along the lines of:-
    Starting D-BUS system messagebus   - Failed
    Failed to start message bus: Failed to close "var/run/dbus.pid": No space left on drive
    Hardware Abstraction Layer - Failed
    everything else during the boot was as normal till I started to type in my username - but couldn't because the keyboard was inactive.
    I used a Wolvix live CD to investigate and found a QT4 file in the packman cache which was 6.9GB in size (compared to the normal 27mb size). Once that was deleted and the drive/partition error checked everything was back to normal. So before you reboot I would definitely recommend clearing any oversize file out of your packman cache, or just clearing the whole cache.
    Last edited by Nixie (2009-10-05 17:16:13)

  • Error when upgrading arch while issueing pacman -Syu [SOLVED]

    bash-3.2# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community 358.3K 13.3K/s 00:00:27 [#####################] 100%
    kdemod-legacy is up to date
    eee is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    warning: dependency cycle detected:
    warning: bash will be installed before its glibc dependency
    looking for inter-conflicts...
    Targets (98): bash-3.2.039-3 kernel-headers-2.6.26.3-1 tzdata-2008h-1
    glibc-2.8-3 alsa-lib-1.0.17a-2 module-init-tools-3.4-1
    kernel26-2.6.27.4-1 atl2-2.0.5-2 texinfo-4.13a-1 m4-1.4.12-1
    autoconf-2.63-1 binutils-2.18-9 bridge-utils-1.4-2
    bzip2-1.0.5-3 openssl-0.9.8i-1 run-parts-2.30-1
    ca-certificates-20080809-4 cracklib-2.8.13-1
    e2fsprogs-1.41.3-2 libgcrypt-1.4.3-2 popt-1.14-1
    cryptsetup-1.0.6-2 dhcpcd-4.0.2-2 dialog-1.1_20080819-1
    dnsutils-9.5.0.P2-1 ed-1.1-2 filesystem-2008.07-1
    fakeroot-1.10.1-1 file-4.26-1 flex-2.5.35-1 fuse-2.7.4-1
    gcc-libs-4.3.2-1 gmp-4.2.4-1.1 mpfr-2.3.2-2 gcc-4.3.2-1
    gettext-0.17-2 gpm-1.20.5-2 grub-0.97-13 hdparm-8.9-1
    hwdetect-0.9.1-2 ifenslave-1.1.0-4 util-linux-ng-2.14-1
    udev-130-1 initscripts-2008.09-2 iproute-2.6.25-1
    iptables-1.4.2-1 iputils-20071127-2
    iwlwifi-3945-ucode-15.28.2.8-1 iwlwifi-4965-ucode-228.57.2.21-1
    jfsutils-1.1.13-1 klibc-1.5.14-1 klibc-extras-2.5-1
    klibc-kbd-1.15.20080312-7 klibc-module-init-tools-3.4-2
    klibc-udev-130-1 libevent-1.4.8-2 libsasl-2.1.22-7
    libtool-2.2.6a-1 links-2.2-2 linux-atm-2.5.0-1
    madwifi-utils-0.9.4.3844-1 madwifi-0.9.4.3844-2
    man-pages-3.11-1 mdadm-2.6.7-1 mlocate-0.21-1 nano-2.0.9-1
    ndiswrapper-utils-1.53-1 ndiswrapper-1.53-2 net-snmp-5.4.2.1-1
    netcfg-2.1.2-1 netkit-telnet-0.17-8 nfsidmap-0.21-2
    nfs-utils-1.1.3-2 ntfs-3g-1.5012-1 openssh-5.1p1-1
    openvpn-2.0.9-4 pciutils-3.0.2-1 pcmciautils-015-2
    perl-5.10.0-4 pptpclient-1.7.2-1 procinfo-19-3 procps-3.2.7-5
    psmisc-22.6-2 python-2.6-2 rp-pppoe-3.10-1 rt2500-1.1.0_B4-25
    rt2x00-rt61-fw-1.2-3 rt2x00-rt71w-fw-1.8-3 sdparm-1.03-1
    shadow-4.1.2.1-2 sudo-1.6.9p17-1 tiacx-20080210-7 vi-7.2.25-1
    wget-1.11.4-1 which-2.20-1 wlan-ng26-utils-0.2.9-1
    wlan-ng26-0.2.9-2 xfsprogs-2.10.1-1
    Total Download Size: 0.00 MB
    Total Installed Size: 471.73 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (98/98) checking for file conflicts [#####################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    klibc: /usr/lib/klibc/include/asm/Kbuild exists in filesystem
    klibc: /usr/lib/klibc/include/asm/a.out.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/acpi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/agp.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/alternative-asm.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/alternative.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/arch_hooks.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/asm-offsets.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/atomic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/atomic_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/atomic_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/auxvec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/bitops.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/boot.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/bootparam.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/bug.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/bugs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/byteorder.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cache.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cacheflush.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/calgary.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/calling.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/checksum.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/checksum_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/checksum_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cmpxchg.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cmpxchg_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cmpxchg_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/compat.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cpu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cpufeature.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/cputime.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/current.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/current_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/current_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/debugreg.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/delay.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/desc.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/desc_defs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/device.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/div64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dma-mapping.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dma.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dmi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dwarf2.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dwarf2_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/dwarf2_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/e820.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/e820_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/e820_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/edac.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/elf.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/emergency-restart.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/errno.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/fb.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/fcntl.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/fixmap.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/fixmap_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/fixmap_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/floppy.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/frame.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/futex.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/gart.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/genapic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/genapic_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/genapic_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/geode.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hardirq.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hardirq_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hardirq_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/highmem.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hpet.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hw_irq.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hw_irq_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hw_irq_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/hypertransport.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/i387.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/i8253.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/i8259.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ia32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ia32_unistd.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ide.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/idle.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/intel_arch_perfmon.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/io.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/io_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/io_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/io_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ioctl.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ioctls.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/iommu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ipcbuf.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq_regs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq_regs_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irq_regs_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/irqflags.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ist.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/k8.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/kdebug.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/kexec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/kmap_types.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/kprobes.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ldt.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/lguest.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/lguest_hcall.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/linkage.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/local.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-bigsmp/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-bigsmp/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-bigsmp/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-bigsmp/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/apm.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/do_timer.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/entry_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/irq_vectors.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/irq_vectors_limits.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_mpparse.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_timer.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_traps.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/mach_wakecpu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/pci-functions.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/setup_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-default/smpboot_hooks.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_mpparse.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-es7000/mach_wakecpu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/irq_vectors_limits.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/mach_mpparse.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-generic/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_mpparse.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-numaq/mach_wakecpu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/irq_vectors_limits.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/mach_ipi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/mach_mpparse.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-summit/mach_mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/cobalt.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/entry_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/irq_vectors.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/lithium.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/mach_apic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/mach_apicdef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/piix4.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/setup_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-visws/smpboot_hooks.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-voyager/do_timer.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-voyager/entry_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-voyager/irq_vectors.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mach-voyager/setup_arch.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/math_emu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mc146818rtc.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mca.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mca_dma.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mce.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mman.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmu_context.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmu_context_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmu_context_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmx.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmzone.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmzone_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mmzone_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/module.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mpspec.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mpspec_def.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/msgbuf.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/msidef.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/msr-index.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/msr.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mtrr.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mutex.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mutex_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/mutex_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/namei.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/nmi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/numa.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/numa_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/numa_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/numaq.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/page.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/page_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/page_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/param.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/paravirt.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/parport.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pci-direct.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pci.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pci_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pci_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pda.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/percpu.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgalloc.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable-2level-defs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable-2level.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable-3level-defs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable-3level.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/pgtable_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/poll.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/posix_types.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/posix_types_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/posix_types_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/prctl.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/processor-cyrix.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/processor-flags.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/processor.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/proto.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ptrace-abi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ptrace.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/reboot.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/reboot_fixups.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/required-features.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/resource.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/resume-trace.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/rio.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/rtc.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/rwlock.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/rwsem.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/scatterlist.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/seccomp.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/seccomp_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/seccomp_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sections.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/segment.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/semaphore.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sembuf.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/serial.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/setup.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/shmbuf.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/shmparam.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sigcontext.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sigcontext32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/siginfo.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/signal.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/smp.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/socket.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sockios.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sparsemem.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/spinlock.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/spinlock_types.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/srat.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/stacktrace.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/stat.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/statfs.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/string.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/string_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/string_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/suspend.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/suspend_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/suspend_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/swiotlb.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/sync_bitops.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/system.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/system_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/tce.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/termbits.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/termios.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/therm_throt.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/thread_info.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/thread_info_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/thread_info_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/time.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/timer.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/timex.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/tlb.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/tlbflush.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/topology.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/tsc.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/types.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/uaccess.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/uaccess_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/uaccess_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/ucontext.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/unaligned.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/unistd.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/unistd_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/unistd_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/unwind.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/user.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/user32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/user_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/user_64.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vga.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vgtod.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vic.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vm86.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vmi.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vmi_time.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/voyager.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/vsyscall.h exists in filesystemI
    klibc: /usr/lib/klibc/include/asm/xen/hypercall.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/xen/hypervisor.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/xen/interface.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/xor.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/xor_32.h exists in filesystem
    klibc: /usr/lib/klibc/include/asm/xor_64.h exists in filesystem
    Errors occurred, no packages were upgraded.
    I had this error when upgrading.  I'm using arch linux on eeepc with kdemod 3.5
    Last edited by kaola_linux (2008-11-04 04:11:36)

    robertp wrote:Go to: http://bbs.archlinux.org/viewtopic.php?id=57885
    Thank you.  That solved my same problem as well. 
    But on my screen the text scrolled  by so fast that i could barely read it and I could not scroll up to read the beginning. 
    how can I pipe the output so that it does not scroll so fast.  i thought this was the "less" command but when i typed:
    less pacman -Syu
    or
    pacman -Syu less
    I got errors in syntax.  I am a noob coming from 1 year using Ubuntu.  I have worked thru many errors to get this far in the install. 
    The forums where down so I was on my own and had to use trial and error and the beginner wiki.  im glad now forums back online because i never woould have figured out this klibc error on my own.

  • Pacman -Syu - errors occurred, no packages were upgraded

    Today I wanted to update my system so a ran pacman -Syu command, download worked perfect
    as usual    but when it got to installation I've seen this:
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libcrux-engine.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libcrux-engine.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libhcengine.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libhcengine.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libmist.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libmist.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libsmooth.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libsmooth.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libthinice.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libthinice.so: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_down-spinner.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_down.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_up-spinner.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_up.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar-right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-thumb-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-thumb-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_trough_focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_trough_focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_left-unsel.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_sel-bottom.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_sel.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-bottom-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-bottom.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel.png: exists in filesystem
      gtk-engines: /usr/share/themes/Crux/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/LighthouseBlue/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/Mist/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/ThinIce/gtk-2.0/gtkrc: exists in filesystem
    errors occurred, no packages were upgraded.
    Can someone tell me what's wrong and how to fix this?Thnx.

    It works again        
    Thank you Happy New Year to all of you        

Maybe you are looking for