Startx from tmux

Hello!
I'd like to start a tmux session on every login, so I put what the wiki suggests in my .zshrc and it works as aspected.
But everytime I try to startx as normal user from there, Xorg fails with this output:
Fatal server error:
(EE) xf86OpenConsole: Cannot open /dev/tty0 (No such file or directory)
My X starts normally from outside of tmux (even I simply detach the session and keep the server running in the background) and also from the inside if I startx as root with sudo.
Thanks in advance.

loafer wrote:What did you actually put in your .zshrc?  You will need to post it.
[[ $- != *i* ]] && return
[[ -z "$TMUX" ]] && exec tmux attach
But I don't think it really matters, since if I remove it and start tmux manually (and even if I remove .tmux.conf) it behaves just the same.

Similar Messages

  • Can't get GDM to work after switch from KDE/KDM to Gnome/GDM

    When I start up it boots into GDM but goes to failsafe with a single terminal and that is it.  I would then go to init 3 and startx from there.  Goes to Gnome.  I open a terminal and use gdmsetup and get that another login manager is starting a boot up.  I changed .xinitrc and inittab to point to gnome and gdm but nothing.  What am I missing.  KDE is uninstalled, is it possible the kdm didn't uninstall.
    help please

    add @gdm to your daemons list

  • Movie from ram

    I wrote a little script which plays copies movie into RAM and plays it from.
    Requirements:
    - packages:
           mplayer
           bar(optional, can be replaced by normal cp command, bar is used only to show progress of coping to RAMfs)
    Preparation (replace "USER" with the username which will play the movie):
    1. A line in fstab is needed:
    none /mnt/ramfs ramfs noauto,user,maxsize=705000 0 0
    (size of the ram filesystem is set in maxsize, it would be the maximum file size of a move which you can play)
    2. Use visudo to add privilages for the user playing the move:
    USER ALL=NOPASSWD:/usr/bin/sdparm --command=stop /dev/sda
    USER ALL=NOPASSWD:/bin/chown USER /mnt/ramfs
    3. Create a file and paste the source (for example to file mplayerRamFs).
    4. Set runnable:
    chmod +x mplayerRamFs
    Some pros and cons of using this script:
    5. Start your favourite terminal program and run:
    ./mplayerRamFs movieName
    (You must specify only the name of the file without the file extension. Only .avi files are supported by this script, but it's not a big problem to change it. It's made so only to support copying subtitles.)
    Pro:
    + saves your laptop battery (not yet tested how much saves, but a movie about 1,5h long takes 39% of my battery, using laptop-mode and cpufreqd, I'll write how much it saved after I watch a movie today :D )
    Contra:
    - needs at least 1GB of RAM
    Source:
    #!/bin/bash
    #set -x
    echo Preparin to play movie from RAMfs: $1
    if [ "`free -m|awk '/Mem:/ {print $2}'`" -lt "999" ]; then
    echo "Not enough RAM!"
    echo "At least 1GB is needed!"
    exit 1
    fi
    echo Mounting ramfs..
    mount /mnt/ramfs || exit 1
    echo Setting permissions...
    sudo chown macieks /mnt/ramfs || exit 1
    echo Copying movie to RAMfs...
    bar -o /mnt/ramfs/"$1.avi" "$1.avi" || exit 1
    # if you don't have bar, use cp instead:
    #cp "$1.avi" /mnt/ramfs
    cp "$1.txt" /mnt/ramfs 2> /dev/null
    echo Running mplayer in background...
    mplayer -fs -vo sdl "/mnt/ramfs/$1.avi" && umount /mnt/ramfs || umount /mnt/ramfs &
    echo Waiting 30 secs to spin down the disk...
    sleep 30
    # Use here any other method you want (sdparm, hdparm)
    sudo sdparm --command=stop /dev/sda
    What do you think about this idea? Mayby someone has other better/simplier solution?
    PS.
    To reduce memory and disk usage, I run startx from console. In /etc/X11/xinit/xinitrc I only have twm started.
    Also before starting the script it's good to stop all daemons from DAEMON list in rc.conf.
    Ofcourse except acpid, cpufreqd, alsa, network, powersaved, laptop-mode (and similar).
    Important is to stop syslog-ng, because it's often a reason to spin up the disk.
    (I'm thinking of adding a function to stop all the daemons before playing the movie and starting them after that)
    Last edited by MAC!EK (2007-07-10 11:22:05)

    nikron wrote:Doesn't it use the same amount of power since you read the entire movie into ram anyway?   Or is reading it all at once better?
    Well, that depends. Power efficiency with cdrom drives is in fact a little tricky to calculate. For one you have CBR modes/speed, which means the drive spins the disc at a rate that gives a constant performance and if that matches your movie bitrate, it depends on how much loss the motor etc. produces but generally you could say this is the optimum of efficiency when playing a movie directly from cd. If you can't match it perfectly because your drive doesn't support that particular speed in CBR it's probably a better idea to copy the movie first.
    With DVDs though, this has changed a little. Basicly every drive can do DVD 1x where 1x is exactly the speed necessary to play a standard DVD. It's hard to beat the efficiency here. It's probably going to turn out just the same.
    Last edited by kth5 (2007-07-17 05:17:08)

  • [SOLVED]Starting from console Safely

    hi all
    I wanted to make a script to startx from in a secure way.
    With secure I'm thinking about:
         - No one can change to the TTY that i started in and simply <ctrl>+Z or C;
         - One can't simply kill bash without root user privileges so the same result as the above would happen; startx should be started with my regular user so my config is preserved.
    are there any more things i should take into account?
    This is where i've gotten so far:
    #!/bin/bash
    # VincyDM
    # Hier zorgen we ervoor dat de control + Z combinatie er niet voor zorgt
    # dat iemand commandos kan uitvoeren in mijn systeem.
    # Een handig commando voor trapping is 'trap -l' dit geeft een lijst van
    # alle traps op je systeem.
    # [BEGIN]Commando's als root uitvoeren
    trap "" 2 20;
    sudo su root << EOF || echo "Failed to log in as root.Exiting.";
    trap "" 2 20;
    read isStart;
    if [ "$isStart" == "Y" ]; then
    echo "Starting X...";
    su vincent -c "startx";
    else
    echo "nope";
    fi;
    EOF
    # [EINDE]Commando's als root uitvoeren
    exit 0;
    Regrettably, it does not work according to my own description
    Last edited by st0ne2thedge (2012-11-28 13:36:00)

    exec xinit -- vt$XDG_VTNR
    This would meet both of your criteria.
    Or, if you have your xserverrc set up as the wiki describes (I don't) then you can just use `exec xinit` for the same results.  EDIT: It seems an update last night (which hasn't hit my mirrors yet) removed the need for specifying the vt in the above manner.  By default xinit will start it on the current vt.  so `exec xinit` should meet both of your requirements on a fully updated system.
    Last edited by Trilby (2012-11-27 13:45:25)

  • Bind remote tmux window to local session

    I have been looking around but nothing I've found even understands what I want. I want to run tmux as a service on all of my machines as my user. Then, with as simple a process as possible, connect to the remote machine from within tmux on the local machine, create a new session (or attach an already running one) on the remote server but bind its new window to the local session. In essence I can now use my standard keys to switch to the window locally but split the window into panes like I'm on the remote system (so each pane is a shell on the remote system).
    Essentially, with a tiling window manager, I don't enjoy having more than one terminal open on the same workspace if can be helped. If I do, now I have to use two different sets of keys to switch first application focus and then a different set to manipulate tmux. Is this even possible? If not, what's the major limitation (Tmux, yes. What about it?)?
    My Solution:
    Well, I've came to a better solution, let X handle local terminal multiplexing. I recently switched to i3 from XMonad and find it's window interaction much cleaner (ie it's not just resizing them everywhere but actually hides, minimizes, full screens, etc). I now only use Tmux in TTYs, the console, and in remote sessions (when I SSH from Tmux I just run a non-multiplexed shell on the server). This is probably the better solution anyways. It's absurdly redundant to run Tmux in XOrg when your window manager is a multiplexer anyway.
    Last edited by Nycroth (2014-09-18 12:16:50)

    Yes all the cmdlets appear in EMS. 
    The output on another workstation using controso.com as a credential...
    PSC:\Users\username> $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://server/powershell/ -Authentication Kerberos -Credential $cred
    [server] Connecting to remote server failed with the following error message : WinRM cannot process the
    request. The following error occured while using Kerberos authentication: There are currently no logon servers availabl
    e to service the logon request.
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or us
    e HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config. For more information,
     see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportExc
    The credential i used was controso.com\(my username) and my password

  • LXDM breaks the console from where it's launched

    I'm having a very weird issue with LXDM when launched from a tty.
    I usually boot my Arch in level 3, and then manually switch to X if I need it. Sometimes I type "init 5", and some other times I type "/etc/rc.d/[whatever]dm start".
    So if, as a desktop manager, I launch xdm or gdm, everything works ok. HOWEVER, if I launch lxdm, then I experience this very weird issue: when going back to the text console (usually Ctrl+Alt+F1) from where I launched the session (and only that one!), the console behaves very strangely, half the characters I type don't get echoed to the screen, non-ascii characters are not recognized, etc. If I go back to any other console (F2 to F6), it works ok.
    This problem occurs whenever I launch lxdm, regardless of which session I open in the desktop manager (sometimes I open Lxde, sometimes Xfce4).
    And this is a pity, because it prevents me from using lxdm, which I'd like to use.
    Does anybody have a clue about what might be the reason or the cause for this? Any hint?
    Very much appreciated, thank you.
    Last edited by humilleitor (2011-09-14 01:19:34)

    humilleitor wrote:But even if you go into X from inittab, I guess your system is using some DM, isn't it?
    Nope. It's the method described in the wiki somewhere to launch startx from inittab:
    x:5:once:/bin/su gusar -l -c "/bin/bash --login -c startx > /dev/null 2>&1"
    Edit: And you know what the weird part is? Doesn't seem to happen on my LiveUSB distro. I use busybox for a few things there, but otherwise it's pretty much Arch packaged into a squashfs image. Weird quirks, don't you just love them?
    Last edited by Gusar (2011-09-14 12:01:23)

  • Automounting & Power off from XFCE stopped working

    Hello, after the latest xorg update my automounting as well as my shutdown/reboot options from XFCE's logout dialog stopped working. I can't also mount other partitions as non-root user. This is one of the most common problems that appear once in a while and I usually tweak my .xinitrc and/or pam.d files to get functionality back, but this time I have no luck. My display manager is plain XDM. I should mention that if I startx from a tty everything is working properly.
    Relevant files
    .xinitrc
    xrdb -merge ~/.Xdefaults
    exec ck-launch-session dbus-launch --auto-syntax --exit-with-session startxfce4
    /etc/pam.d/xdm
    auth required pam_unix.so
    auth required pam_nologin.so
    auth required pam_env.so
    auth optional pam_gnome_keyring.so
    account required pam_unix.so
    password required pam_unix.so
    session required pam_unix.so
    session optional pam_loginuid.so
    session optional pam_ck_connector.so nox11
    session optional pam_gnome_keyring.so auto_start
    session required pam_limits.so
    /etc/pam.d/login
    auth required pam_securetty.so
    auth requisite pam_nologin.so
    auth required pam_unix.so nullok
    auth required pam_tally.so onerr=succeed file=/var/log/faillog
    account required pam_access.so
    account required pam_time.so
    account required pam_unix.so
    session required pam_unix.so
    session required pam_env.so
    session required pam_motd.so
    session required pam_limits.so
    session optional pam_mail.so dir=/var/spool/mail standard
    session optional pam_lastlog.so
    session optional pam_loginuid.so
    -session optional pam_ck_connector.so nox11
    # session optional pam_ck_connector.so # same results as above with this
    Output of ck-list-sessions
    Session8:
    unix-user = '1000'
    realname = '...'
    seat = 'Seat1'
    session-type = ''
    active = TRUE
    x11-display = ':0'
    x11-display-device = '/dev/tty7'
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2011-10-12T23:08:23.442789Z'
    login-session-id = '4'
    Session9:
    unix-user = '1000'
    realname = '...'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ':0'
    x11-display-device = '/dev/tty7'
    display-device = ''
    remote-host-name = ''
    is-local = TRUE
    on-since = '2011-10-12T23:08:23.554858Z'
    login-session-id = '4'
    and the groups I'm in
    disk lp wheel utmp network video audio optical storage power users vboxusers foucault sentaurus
    Any ideas? Could this be an XDM issue or any misconfiguration? The same thing happens with slim as well. I could really use some help here. All four bullets mentioned in the wiki are true.
    Thanks in advance!
    Last edited by Foucault (2011-10-12 23:36:53)

    The problem seems to reappear.  The changelogs for xfce4-session 4.8.2-2 say: "Remove .pkla files; shutdown/suspend/etc should continue to work for people with correct ConsoleKit sessions."
    So I need a consolekit session to be able to shutdown. However if I  start xfce with no displaymanager using 'exec ck-launch-session startxfce4' in my .xinitrc. and check my sessions with 'ck-list-sessions' I get:
    Session2:
    unix-user = '1001'
    realname = '(null)'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ''
    x11-display-device = ''
    display-device = '/dev/tty2'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2011-11-21T18:13:26.929832Z'
    login-session-id = '2'
    idle-since-hint = '2011-11-21T18:13:58.225846Z'
    Session4:
    unix-user = '1000'
    realname = '(null)'
    seat = 'Seat3'
    session-type = ''
    active = FALSE
    x11-display = ':0'
    x11-display-device = '/dev/tty8'
    display-device = '/dev/tty1'
    remote-host-name = ''
    is-local = FALSE
    on-since = '2011-11-21T18:19:24.067561Z'
    login-session-id = '1'
    That would explain why I can't shutdown, but it makes me wonder how do I get get a valid session. The wiki on consolekit seems to imply that I need a displaymanager, but I rather would not use one. Does anyone know how to fix this?
    Last edited by rwd (2011-11-21 22:58:56)

  • REDHAT LINUX 7.3 on nForce based systems - An installation guide.

    INSTALLING REDHAT LINUX 7.3 ON NFORCE BASED SYSTEMS.
    A) Preface
    I'm a Linux newbie, just sharing my experience with installing linux on nforce.
    in my opinion Linux is a powerful but still a nascent operating system (in terms of user friendliness atleast!). many features are extremely 'release' and 'version' dependent.  this means that, what works in redhat might not work in mandrake or what works in redhat 7.3 might not work in redhat 7.1 or likewise...
    the steps i'm listing below just reflects how i went about installing RH 7.3 on my machine (K7N420D). it MAY not work for other versions or releases.
    B) BIOS SETTINGS
    1. I recommend, PnP disabled, ACPI/APIC disabled.
    for Mandrake 8.2 install on some machines (mine included), i suggest disabling audio and network in the bios till you get a stable level 3 (console without X windows) or level 5 install. for some reason, sometimes, on some boards,  Mandrake 8.2 hangs when probing audio and lan during boot.
    C) PREPARING TO INSTALL
    1. i suggest you get the three iso images from the internet and burn them into installation disks. though there are other ways of installing, this is the simplest way of doing it.
    2. if you have windows installed already, make sure you have a windows boot floppy in case of boot problems, you can also make one for linux during installation.
    3. using windows or fdisk strip off a sufficient chunk of hard disk space from an existing partition if you don't have a free partition. you need not create any partitions, just the non-allocated space would do. (as red hat can beautifully split this partition into /boot, / & swap partitions!)
    4. i recommend using GRUB (GRand Unified Boot-loader) instead of LILO for boot management. if you prefer the same way, get good documentation/how-to for grub from the net. this will be handy if you mess up your boot partition and end up in a grub prompt during boot.
    5. goto nvidia's drivers page and get appropriate drivers. i always recommend tar balls or src.rpm files instead of pre-compiled rpms. if you are using EXACT same version of the linux release as mentioned in the drivers page you can use rpms. If you wish to upgrade your kernel or use a different version of linux then make sure you have tar balls or source rpm files. make sure you also print the installation instructions from the same page.
    6. the drivers you need are
    a. NVIDIA_nforce-1.xxxx. - you need this one for audio & lan. (found in nforce link in drivers menu in nvidia site with an instruction manual)
    b. NVIDIA_kernel-xxxx AND NVIDIA_GLX-xxxx- both these for Graphics in Xwindows. these two drivers should be exactly matched. i suggest you download all of them along with a files named NVchooser.sh found on the same page. NVchooser will tell you which pair to install for your linux kernel version and CPU.
    D) LINUX INSTALLATION
    1. boot from 1st installation disk that you made. go through the GUI installer and choose automatic partitioning, it will take you to the Disk Druid and you can select the partition in which you wanna install linux. if the partition you choose is unallocated, most of the times didk druid will make three patrtions on its own, one is /boot (boot partion), /swap (partition for swap, similar to ramdisk) and / (root partition). all the three mount-points may be allocated on the same partition too.
    2. Choose GRUB (if you prefer) as boot loader and set Linux as primary boot OS and this page would've detected windows if you've already (it may appear as DOS). Choose "MBR" to install GrUB. If you get any warning ignore it. IMPORTANT: If you have NTFS partition for windows and you had windows as primary OS, there is a reported problem that says, in some versions of the linux installer, choosing MBR to install GRUB makes it hard to boot into windows. i haven't tried that option yet as i don't have a NTFS partition. If you have an NTFS partition, you may prefer to choose the other option to install GRUB or you may choose to install it later. in either case make sure you have a boot floppy to get you into linux or windows, whichever one you want.
    3. choose automatic install if you don't want to control which packages you want to install. else choose expert installation and proceed with it.
    4. when prompted to check the packages you want to install, choose "development tools" or something similar without fail. This is for installing a C compiler which is a must have for some driver installations. (this also installs perl and other dev tools, if you're an 'expert', there's an option in this page to custom select modules)
    5. somewhere you'll be asked to provide a root password, in the same page there'll be a provision to add users other than root. create atleast one user other than root at this time.
    4. somewhere you'll be shown a list of video adapters with NVIDIA Geforce 2 generic driver already highlighted. Below this screen you'll see a "Skip X install" or something similar. CHECK THIS TAB and this will NOT install the generic driver for your integrated GPU and also will not configure the GUI environment for Linux. This makes your video configuration a little easier.
    5. now linux will install, get configured and will ask if you wanna create a boot floppy. make one just in case you
    6. RH 7.3 will not recognize your APU and integrated LAN. you can install the drivers for this later.
    7. After installation boot into Linux, if you just followed the steps above you'll nicely end up in level 3 console!
    E) INSTALLING DRIVERS
    1. Assuming you got all the drivers in CD/floppy, login as 'user', type command "su" (super user) supply root password, now you are logged in as root. read the installation manual for the NVIDIA drivers and install NVIDIA_nforce-1.xxxx drivers for audio/LAN. do these series of steps from the console prompt,
    #vi /etc/modules.conf
    press INSERT key, add the following lines,
    alias eth0 mcpeth
    alias sound-slot-1 i810_audio
    alias usb-interface usb-ohci
    press ESC, (Shift) colon, wq and Enter.
    This will save the changes you made.
    2. Now install the NVIDIA_kernel-xxxx AND NVIDIA_GLX-xxxx- drivers as per instructions. follow the steps below.
    #XConfigurator
    Choose settings that are relevant to the monitor you use and mode supported. Choose custom configuration wherever possible. If your monitor is not listed, choose 'custom' all the way through and provide hardware details such as horiz/vert freq range, video memory and clock settings (choose 'recommended').
    DO NOT LET THE XCONFIGURATOR PROBE ANYTHING. sometimes this might cause a hang that is not necessary at all.
    select all videomodes and color depths that you think your monitor will support and exit XConfigurator without any probing.
    3.  Now at the prompt do the following,
    #vi /etc/X11/XF86Config-4
    Press INSERT and make following changes.
    replace line
    Driver "nv"  
    with
    Driver "nvidia"
    In the Module section, make sure you have:
            Load   "glx"
    Remove the following lines: (or put a hash before)
            Load  "dri"
            Load  "GLcore"
    and the whole
    Section "DRI" (last three lines usually, DRI may be in lower case usually)
    Press Esc, (Shift) colon, wq, Enter to save and exit.
    4. using vi make sure you have these lines in /etc/modules.conf file
    alias char-major-195 NVdriver
    5. edit /etc/rc.d/rc.local and insert
    /sbin/modprobe nvaudio
    /sbin/modprobe nvnet
    save and exit. ( this is a crude way of loading modules but it works though!)
    6. Type "reboot" at prompt and reboot your system.
    7. get into bios and load original settings. (get back ACPI if you have windows, enable PnP OS etc)
    8. During restart linux may get you into the kudzu installer to install network drivers/audio, ignore this.
    9. login as "user" and type "startx" from console, your GUI should start smooth and you'll have video, sound, USB, LAN working (you need to fiddle a little bit more to get things work perfect) !
    10. There is extensive documentation found in the internet on these topics, have fun exploring them.
    F) TWEAKING YOUR HARD DRIVE
    most of the modern hard drives support UDMA transfers and usually linux is pretty much conservative on this option. so you might want to force linux to use UDMA. the following discussion assumes that your hard drive is /dev/hda, change it to hdb, hdc etc as per your setup.
    CAUTION: The 'hdparm' utility described here is a very powerful and dangerous if used improperly. USING hdparm IMPROPERLY MIGHT CORRUPT YOUR PARTITIONS AND RESULT IN SEVERE DATA LOSS. hdparm works with IDE drives. i'm not sure how it works on SCSI drives.
    @ console,
    1. type "man hdparm" and read through the hdparm manual atleast twice before you understand what it can do. THIS IS A MUST.
    2. login as root or get into super user mode and try the following. all commands are shown after #
    3. Benchmark the hard drive
    # /sbin/hdparm -t -T /dev/hda
    this should spit out the transfer rate both cached and sustained. note this value. if these values are close to what you expect out of your drive, you are OK. you may get out of further adventures! if the transfer rates are horrible like 3.5 Mbps etc (it was on my seagate ata IV drive!), then proceed with the tweaks. the golden rule is, after each tweak, run the benchmark and record your transfer rate. if there is no significant improvement, revert back to the default settings.
    4. # /sbin/hdparm -i /dev/hda
    note down MaxMultSect, MultSect, Modes supported : PIO/DMA, especially the mode with a 'star' in front of it. (prefered mode)
    5. 32 bit I/O : to enable 32 bit I/O over the PCI bus
    # /sbin/hdparm -c1 /dev/hda
    this usually doubles your transfer rate if the drive supports. you may need to use -c3 for some chipsets.
    6. Enable DMA and set DMA mode
    if your drive supports DMA find out the prefered DMA mode using -i option.
    # /sbin/hdparm -d1 -Xab /dev/hda, where
    ab=64 + uDMA mode number (for eg. 66 for UDMA 2)
    ab=32 + DMA mode number (for multi-word DMA mode)
    you might need to prepare the chipset to enable DMA but on most of the modern hard dirves this works. refer to the "man hdparm" for details. beware, the options to 'prepare' the chipset for DMA should be used with EXTREME caution. if you do not know what you are doing, don't try it.
    7. To set multiple sector mode I/O,
    # /sbin/hdparm -m XX /dev/hda
    where XX is the MaxMultSect value obtained using -i option. if the MaxSect is already set to this value, you need not tweak this.
    after all these tweaks run the benchmark atleast three times consecutively and average the transfer rates. make sure you don't hear grinding noises in the hard drive. use these tweaks a couple of times manually and if verything appears to be working fine, add the necessary commands to the rc.local script to execute them automatically during  start up.
    G) FINAL WORDS
    I assumed that you're a total 'newbie' to linux when writing this so i followed a conservative approach. most of the things that i described can be done in many ways, it's up to you to explore them! as usual, there MIGHT be typos and other serious errors in this guide. also the driver files that i might have mentioned here are the ones that were available when i wrote this. so you might wanna try their latest equivalents. i'm open to all healthy criticism and suggestions. when i installed linux on my nforce board, i was badly looking for an article like this on the net. i missed one, if it exists at all. so am i writing this. i hope you'll get benefitted by this in some way.
    -Venk@

    Venkat,
    Thanks for this really really amazingly accurate and exhaustive post that helped me A LOT to install linux on my machine!!! Otherwise, I think I would still be hanging with a mandrake 8.2 trying to load sound...
    My system is now fully functional but, (yes, there is a little but) I was not able to make the LAN function properly. When booting, while linux tries to load the ethernet module, I get something like:
    'mcpeth device does not seem to be present, delaying eth0 initialiation'. Then, I open an X session, I try to use the network configurator, the ethernet device is there but when trying to activate, it fails... I swear I enabled the LAN in my BIOS.
    I also tried to replace 'alias eth0 mcpeth' with 'alias eth0 nvnet' in /etc/modules.conf after reading the installation notes of NVIDIA drivers. I get a slighty different result: my boot error is now 'failed to load module'.
    It is a shame I have to boot back to Windows to use my DSL connection. I think i need some insights. It will be greatly appreciated!
    Thanks,
    Chouch
    >I'm a Linux newbie, just sharing my experience with
    >installing linux on nforce.
    Not bad for a Newbie...  

  • Problems running xfce (&icewm), issues with xorg...?

    Hi,
    I am making a 2. attempt at arch linux. I have installed arch on my laptop. The first problem I don't seem to be able to overcome without help is getting xorg working.
    When i run startx the tty hangs. Its not even recovered by killing startx from another tty.
    First i tried startx without exec. This is the exception in that it did not hang. Then i tried startex with "exec startxfce4" in the .xinitrc. I tried again after a reboot becouse of the message:
    /usr/bin/startxfce4: X server already running on display :0
    I made an additional attemt using icewm in place of xfce, it did also hang the tty.
    My laptop has an integrated intel graphics chip, as well as a NVIDIA dedicated graphics card.
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [NVS 4200M] (rev a1)
    At first I tried installing only the NVIDIA driver, but they did not load correctly, assuming I understand the logs. The same with the intel driver. As a result, xorg did not recognize my display. Therefore I have all of the following installed:
    xf86-video-intel      xf86-video-nouveau  nvidia  xf86-video-vesa
    When I explicitly installed the vesa driver, I did not see an error saying that no monitor was found.
    In addition i have the following packages installed:
    xorg-server xorg-server-utils xorg-xinit  xfce4 icewm
    In addition I may have done
    pacman -S xorg and chosen the default xf86-input-evdev
    I have put the logs and such here:
    http://folk.uio.no/henrikq/arch/xorg/
    I have no idea what to do at this point, so help would be appreciated.

    Sorry about the long absence, I have been busy.
    I do indeed have Optimus. I had a friend look at the problem. He set me up with an .xinitrc and xorg.conf. We got stuck at black screen on startx. I have managed to account for all error but one:
    [ 111.205] (EE) Screen 1 deleted because of no matching config section.
    xrandr --listproviders, gives:
    Providers: number : 2
    Provider 0: id: 0x2af cap: 0x1, Source Output crtcs: 0 outputs: 0 associated providers: 0 name:NVIDIA-0
    Provider 1: id: 0x43 cap: 0x2, Sink Output crtcs: 2 outputs: 2 associated providers: 0 name:modesetting
    I have put log files etc here:
    http://folk.uio.no/henrikq/arch/xorg2/

  • Slim doesn't works but LXDE is ok

    Hello (and sorry for my english )
    I installed today arch linux on my laptop. At the beginning, everything was ok, slim  worked fine. After playing with the policykit issue (see "I won the struggle against hal and policykit": http://bbs.archlinux.org/viewtopic.php?id=65070 )and installing the networkmanager (both are working now), slim doesn't works any more - I get a black screen with no mouse and nothing. I think that the problem is slim itself, because if I tipe "startx" from the commandline as normal user (after having killed X as root) lxde starts and everything works. I tried to reinstall slim but it doesn't works.
    I don't know which files to post, so here are two of them
    [swisstux@inspiron ~]$ cat .xinitrc
    exec ck-launch-session startlxde
    [swisstux@inspiron ~]$ cat /etc/rc.conf
    DAEMONS=(syslog-ng polkitparser hal @cpufreq @laptop-mode @networkmanager @crond @alsa @slim)

    it says only this:
    slim: Stale lockfile found, removing it
    it is a bit slow (too slow, on another PC it is 10 times faster), but it works if I start it from the command line. just on boot it doesn't works.
    edit: here is the log of slim starting at boot and at the end the log of slim starting from the shell: http://pastebin.com/m4b6fad81
    second edit: I removed every "@" from the daemon's list in rc.conf and now it works. but it is still really slow
    Last edited by swisstux (2009-04-16 17:53:25)

  • Using slim and xfce4, something crashes on exit

    I recently did a fresh install of Arch onto an older PC that I have. It's running a P4 3.06GHz, an nVidia GeForce FX 5900, and 1GB RAM. Because of the lower resources, I decided to use xfce4 and slim. I have a monitor and TV hooked up through s-video with the "seperate X screen" option. Whenever I logout of xfce (this includes, logout, reboot, shutdown), it goes to a blank black screen with a cursor at the top left and just hangs. I have slim configured to run from inittab, so it picks up after a couple seconds. However, if I run startx from console, and then logout of xfce the system just hangs and wont accept any keyboard input (including ctrl+alt+function to switch run levels). Also, if I choose to shutdown or reboot, the system will do so but the only thing I see is the blank screen until the POST. If I do a startx from console, the logout, I'm able to ssh in from my laptop, login and issue a reboot (again the screen doesn't change until the POST). Also, if I turn the "seperate x screen" option off, and just run the desktop on the monitor, it doesn't freeze. I've worked my way through a number of issues so far, but this one has me completely stumped. I'm not sure if there's something wrong with my configuration or if it's just a problem with the graphics driver. Any advice and/or help is greatly appreciated.
    Here are configuration and log files:
    Xorg.conf
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder75) Wed Jan 27 03:03:53 PST 2010
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri2"
    Load "dri"
    Load "dbe"
    Load "record"
    Load "extmod"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    Option "DPI" "95 x 96"
    ModelName "CMO CMC 17 AD"
    HorizSync 30.0 - 82.0
    VertRefresh 50.0 - 75.0
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "TV-0"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NV35 [GeForce FX 5900]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Videocard0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce FX 5900"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Videocard1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce FX 5900"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Videocard0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Videocard1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "TV: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path ./:/bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    # numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    sessionstart_cmd /usr/bin/sessreg -a -l $DISPLAY %user
    sessionstop_cmd /usr/bin/sessreg -d -l $DISPLAY %user
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions xfce4,icewm,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user desktopuser
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    focus_password yes
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    auto_login yes
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme default
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    slim.log isolated reboot
    /usr/bin/xauth: creating new authority file /var/run/slim.auth
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 14:07:00 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    /usr/bin/xauth: creating new authority file /home/desktopuser/.Xauthority
    /usr/bin/startxfce4: X server already running on display :0.0
    /tmp/xrdb_dysqQd:1: error: Unknown #directive "Those"
    # Those are fallback settings, use the ui plugin to change it
    /tmp/xrdb_dysqQd:2: error: Unknown #directive "or"
    # or add your overrides to ~/.Xresources
    /tmp/xrdb_dysqQd:3: error: Unknown #directive "Xft"
    # Xft.hintstyle: hintnone/hintslight/hintmedium/hintfull
    /tmp/xrdb_dysqQd:4: error: Unknown #directive "Xft"
    # Xft hinting: 1/0
    4 errors in preprocessor.
    xrdb: "Xft.hinting" on line 9 overrides entry on line 6
    xrdb: "Xft.hintstyle" on line 11 overrides entry on line 7
    /tmp/xrdb_dysqQd:1: error: Unknown #directive "Those"
    # Those are fallback settings, use the ui plugin to change it
    /tmp/xrdb_dysqQd:2: error: Unknown #directive "or"
    # or add your overrides to ~/.Xresources
    /tmp/xrdb_dysqQd:3: error: Unknown #directive "Xft"
    # Xft.hintstyle: hintnone/hintslight/hintmedium/hintfull
    /tmp/xrdb_dysqQd:4: error: Unknown #directive "Xft"
    # Xft hinting: 1/0
    4 errors in preprocessor.
    xrdb: "Xft.hinting" on line 9 overrides entry on line 6
    xrdb: "Xft.hintstyle" on line 11 overrides entry on line 7
    Agent pid 1617
    xfdesktop[1637]: starting up
    (xfce4-settings-helper:1639): GLib-GObject-CRITICAL **: g_param_spec_flags: assertion `G_TYPE_IS_FLAGS (flags_type)' failed
    (xfce4-settings-helper:1639): GLib-GObject-CRITICAL **: g_object_class_install_property: assertion `G_IS_PARAM_SPEC (pspec)' failed
    slim.log isolated logout
    slim: waiting for X server to shut down..........
    slim: X server slow to shut down, sending KILL signal.
    slim: waiting for server to die
    /usr/bin/xauth: creating new authority file /var/run/slim.auth
    slim: waiting for X server to begin accepting connections
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 14:01:03 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 18:39:41 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Videocard0"
    (**) |-->Screen "Screen1" (1)
    (**) | |-->Monitor "Monitor1"
    (**) | |-->Device "Videocard1"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (**) Option "BlankTime" "0"
    (**) Option "StandbyTime" "0"
    (**) Option "SuspendTime" "0"
    (**) Option "OffTime" "0"
    (**) Option "Xinerama" "0"
    (==) 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,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x81e4c40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (++) using VT number 7
    (--) PCI:*(0:1:0:0) 10de:0331:0000:0000 nVidia Corporation NV35 [GeForce FX 5900] rev 161, Mem @ 0xfd000000/16777216, 0xe0000000/134217728, BIOS @ 0x????????/131072
    (--) PCI: (0:2:10:0) 4444:0016:0070:b7f3 Internext Compression Inc iTVC16 (CX23416) MPEG-2 Encoder rev 1, Mem @ 0xf0000000/67108864
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (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. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (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 173.14.25 Wed Jan 27 02:59:37 PST 2010
    (II) Loading extension GLX
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "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) NVIDIA dlloader X Driver 173.14.25 Wed Jan 27 02:34:38 PST 2010
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01@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.7.5.902, 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.7.5.902, 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
    (**) 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 "TwinView" "0"
    (**) NVIDIA(0): Option "MetaModes" "CRT: nvidia-auto-select +0+0"
    (**) NVIDIA(0): Option "TwinViewXineramaInfoOrder" "CRT-0"
    (**) NVIDIA(0): Option "DPI" "95 x 96"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce FX 5900 (NV35) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.35.20.18.04
    (II) NVIDIA(0): Detected AGP rate: 8X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce FX 5900 at PCI:1:0:0:
    (--) NVIDIA(0): CMO CMC 17" AD (CRT-0)
    (--) NVIDIA(0): NVIDIA TV Encoder (TV-0)
    (--) NVIDIA(0): CMO CMC 17" AD (CRT-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(0): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(0): TV encoder: NVIDIA
    (II) NVIDIA(0): Display Device found referenced in MetaMode: CRT-0
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "CRT:nvidia-auto-select+0+0"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (**) NVIDIA(0): DPI set to (95, 96); computed from "DPI" X config option
    (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(1): RGB weight 888
    (==) NVIDIA(1): Default visual is TrueColor
    (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(1): Option "TwinView" "0"
    (**) NVIDIA(1): Option "MetaModes" "TV: nvidia-auto-select +0+0"
    (**) NVIDIA(1): Enabling RENDER acceleration
    (II) NVIDIA(1): NVIDIA GPU GeForce FX 5900 (NV35) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(1): Memory: 131072 kBytes
    (--) NVIDIA(1): VideoBIOS: 04.35.20.18.04
    (II) NVIDIA(1): Detected AGP rate: 8X
    (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    (--) NVIDIA(1): Connected display device(s) on GeForce FX 5900 at PCI:1:0:0:
    (--) NVIDIA(1): CMO CMC 17" AD (CRT-0)
    (--) NVIDIA(1): NVIDIA TV Encoder (TV-0)
    (--) NVIDIA(1): CMO CMC 17" AD (CRT-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(1): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(1): TV encoder: NVIDIA
    (II) NVIDIA(1): Display Device found referenced in MetaMode: TV-0
    (II) NVIDIA(1): Assigned Display Device: TV-0
    (II) NVIDIA(1): Validated modes:
    (II) NVIDIA(1): "TV:nvidia-auto-select+0+0"
    (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    (==) NVIDIA(1): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) NVIDIA(0): Initialized AGP GART.
    (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "CRT:nvidia-auto-select+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (==) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) NVIDIA(1): Initialized AGP GART.
    (II) NVIDIA(1): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(1): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(1): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(1): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(1): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(1): Config Options in the README.
    (II) NVIDIA(1): Setting mode "TV:nvidia-auto-select+0+0"
    (II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(1): Backing store disabled
    (==) NVIDIA(1): Silken mouse enabled
    (==) NVIDIA(1): DPMS enabled
    (==) 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) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) 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 relative axes
    (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) acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) 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" "us"
    (II) config/hal: Adding input device Microsoft Microsoft Wireless Optical Desktop® 1.00
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: always reports core events
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: Device: "/dev/input/event6"
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found 9 mouse buttons
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found scroll wheel(s)
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found relative axes
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found x and y relative axes
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found keys
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as mouse
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as keyboard
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: YAxisMapping: buttons 4 and 5
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Desktop® 1.00" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: (accel) keeping acceleration scheme 1
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: (accel) acceleration profile 0
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: initialized for relative axes.
    (II) config/hal: Adding input device Microsoft Microsoft Wireless Optical Desktop® 1.00
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: always reports core events
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: Device: "/dev/input/event5"
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found keys
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Desktop® 1.00" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (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" "us"
    (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" "us"
    errors from errors.log, this stuff just repeats
    Mar 19 15:44:43 ArchDaemon kernel: ACPI: I/O resource smsc47m1 [0x680-0x6ff] conflicts with ACPI region IOPM [0x680-0x6ff]
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Unable to open firmware v4l-cx2341x-enc.fw (must be 376836 bytes)
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Did you put the firmware in the hotplug firmware directory?
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Unable to open firmware v4l-cx2341x-enc.fw (must be 376836 bytes)
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Did you put the firmware in the hotplug firmware directory?
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 3
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 0
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 1
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 2
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 2
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 0
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 3
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 1
    Mar 19 18:39:22 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    Mar 19 18:39:22 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    Mar 19 18:39:30 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    errors common in auth.log
    Mar 19 13:10:25 ArchDaemon sudo: desktopuser : pam_authenticate: Conversation error ; TTY=unknown ; PWD=/home/desktopuser ; USER=root ; COMMAND=/usr/lib/xfce4/xfsm-shutdown-helper
    Mar 19 13:10:30 ArchDaemon dbus-daemon: Rejected send message, 1 matched rules; type="method_call", sender=":1.10" (uid=1001 pid=1567 comm="exo-mount) interface="org.freedesktop.Hal.Device.Volume" member="Mount" error name="(unset)" requested_reply=0 destination="org.freedesktop.Hal" (uid=0 pid=1336 comm="/usr/sbin/hald))

    I recently did a fresh install of Arch onto an older PC that I have. It's running a P4 3.06GHz, an nVidia GeForce FX 5900, and 1GB RAM. Because of the lower resources, I decided to use xfce4 and slim. I have a monitor and TV hooked up through s-video with the "seperate X screen" option. Whenever I logout of xfce (this includes, logout, reboot, shutdown), it goes to a blank black screen with a cursor at the top left and just hangs. I have slim configured to run from inittab, so it picks up after a couple seconds. However, if I run startx from console, and then logout of xfce the system just hangs and wont accept any keyboard input (including ctrl+alt+function to switch run levels). Also, if I choose to shutdown or reboot, the system will do so but the only thing I see is the blank screen until the POST. If I do a startx from console, the logout, I'm able to ssh in from my laptop, login and issue a reboot (again the screen doesn't change until the POST). Also, if I turn the "seperate x screen" option off, and just run the desktop on the monitor, it doesn't freeze. I've worked my way through a number of issues so far, but this one has me completely stumped. I'm not sure if there's something wrong with my configuration or if it's just a problem with the graphics driver. Any advice and/or help is greatly appreciated.
    Here are configuration and log files:
    Xorg.conf
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder75) Wed Jan 27 03:03:53 PST 2010
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri2"
    Load "dri"
    Load "dbe"
    Load "record"
    Load "extmod"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    Option "DPI" "95 x 96"
    ModelName "CMO CMC 17 AD"
    HorizSync 30.0 - 82.0
    VertRefresh 50.0 - 75.0
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "TV-0"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NV35 [GeForce FX 5900]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Videocard0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce FX 5900"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Videocard1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce FX 5900"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Videocard0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Videocard1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "TV: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path ./:/bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    # numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    sessionstart_cmd /usr/bin/sessreg -a -l $DISPLAY %user
    sessionstop_cmd /usr/bin/sessreg -d -l $DISPLAY %user
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions xfce4,icewm,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user desktopuser
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    focus_password yes
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    auto_login yes
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme default
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    slim.log isolated reboot
    /usr/bin/xauth: creating new authority file /var/run/slim.auth
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 14:07:00 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    /usr/bin/xauth: creating new authority file /home/desktopuser/.Xauthority
    /usr/bin/startxfce4: X server already running on display :0.0
    /tmp/xrdb_dysqQd:1: error: Unknown #directive "Those"
    # Those are fallback settings, use the ui plugin to change it
    /tmp/xrdb_dysqQd:2: error: Unknown #directive "or"
    # or add your overrides to ~/.Xresources
    /tmp/xrdb_dysqQd:3: error: Unknown #directive "Xft"
    # Xft.hintstyle: hintnone/hintslight/hintmedium/hintfull
    /tmp/xrdb_dysqQd:4: error: Unknown #directive "Xft"
    # Xft hinting: 1/0
    4 errors in preprocessor.
    xrdb: "Xft.hinting" on line 9 overrides entry on line 6
    xrdb: "Xft.hintstyle" on line 11 overrides entry on line 7
    /tmp/xrdb_dysqQd:1: error: Unknown #directive "Those"
    # Those are fallback settings, use the ui plugin to change it
    /tmp/xrdb_dysqQd:2: error: Unknown #directive "or"
    # or add your overrides to ~/.Xresources
    /tmp/xrdb_dysqQd:3: error: Unknown #directive "Xft"
    # Xft.hintstyle: hintnone/hintslight/hintmedium/hintfull
    /tmp/xrdb_dysqQd:4: error: Unknown #directive "Xft"
    # Xft hinting: 1/0
    4 errors in preprocessor.
    xrdb: "Xft.hinting" on line 9 overrides entry on line 6
    xrdb: "Xft.hintstyle" on line 11 overrides entry on line 7
    Agent pid 1617
    xfdesktop[1637]: starting up
    (xfce4-settings-helper:1639): GLib-GObject-CRITICAL **: g_param_spec_flags: assertion `G_TYPE_IS_FLAGS (flags_type)' failed
    (xfce4-settings-helper:1639): GLib-GObject-CRITICAL **: g_object_class_install_property: assertion `G_IS_PARAM_SPEC (pspec)' failed
    slim.log isolated logout
    slim: waiting for X server to shut down..........
    slim: X server slow to shut down, sending KILL signal.
    slim: waiting for server to die
    /usr/bin/xauth: creating new authority file /var/run/slim.auth
    slim: waiting for X server to begin accepting connections
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 14:01:03 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    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.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux ArchDaemon 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/49d062ba-9f7b-4d18-98f2-87249f723889 ro 5 acpi_enforce_resources=lax vga=771
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 19 18:39:41 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Videocard0"
    (**) |-->Screen "Screen1" (1)
    (**) | |-->Monitor "Monitor1"
    (**) | |-->Device "Videocard1"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (**) Option "BlankTime" "0"
    (**) Option "StandbyTime" "0"
    (**) Option "SuspendTime" "0"
    (**) Option "OffTime" "0"
    (**) Option "Xinerama" "0"
    (==) 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,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x81e4c40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (++) using VT number 7
    (--) PCI:*(0:1:0:0) 10de:0331:0000:0000 nVidia Corporation NV35 [GeForce FX 5900] rev 161, Mem @ 0xfd000000/16777216, 0xe0000000/134217728, BIOS @ 0x????????/131072
    (--) PCI: (0:2:10:0) 4444:0016:0070:b7f3 Internext Compression Inc iTVC16 (CX23416) MPEG-2 Encoder rev 1, Mem @ 0xf0000000/67108864
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (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. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (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 173.14.25 Wed Jan 27 02:59:37 PST 2010
    (II) Loading extension GLX
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.5.902, 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: "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) NVIDIA dlloader X Driver 173.14.25 Wed Jan 27 02:34:38 PST 2010
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01@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.7.5.902, 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.7.5.902, 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
    (**) 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 "TwinView" "0"
    (**) NVIDIA(0): Option "MetaModes" "CRT: nvidia-auto-select +0+0"
    (**) NVIDIA(0): Option "TwinViewXineramaInfoOrder" "CRT-0"
    (**) NVIDIA(0): Option "DPI" "95 x 96"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce FX 5900 (NV35) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.35.20.18.04
    (II) NVIDIA(0): Detected AGP rate: 8X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce FX 5900 at PCI:1:0:0:
    (--) NVIDIA(0): CMO CMC 17" AD (CRT-0)
    (--) NVIDIA(0): NVIDIA TV Encoder (TV-0)
    (--) NVIDIA(0): CMO CMC 17" AD (CRT-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(0): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(0): TV encoder: NVIDIA
    (II) NVIDIA(0): Display Device found referenced in MetaMode: CRT-0
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "CRT:nvidia-auto-select+0+0"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (**) NVIDIA(0): DPI set to (95, 96); computed from "DPI" X config option
    (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(1): RGB weight 888
    (==) NVIDIA(1): Default visual is TrueColor
    (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(1): Option "TwinView" "0"
    (**) NVIDIA(1): Option "MetaModes" "TV: nvidia-auto-select +0+0"
    (**) NVIDIA(1): Enabling RENDER acceleration
    (II) NVIDIA(1): NVIDIA GPU GeForce FX 5900 (NV35) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(1): Memory: 131072 kBytes
    (--) NVIDIA(1): VideoBIOS: 04.35.20.18.04
    (II) NVIDIA(1): Detected AGP rate: 8X
    (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    (--) NVIDIA(1): Connected display device(s) on GeForce FX 5900 at PCI:1:0:0:
    (--) NVIDIA(1): CMO CMC 17" AD (CRT-0)
    (--) NVIDIA(1): NVIDIA TV Encoder (TV-0)
    (--) NVIDIA(1): CMO CMC 17" AD (CRT-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(1): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(1): TV encoder: NVIDIA
    (II) NVIDIA(1): Display Device found referenced in MetaMode: TV-0
    (II) NVIDIA(1): Assigned Display Device: TV-0
    (II) NVIDIA(1): Validated modes:
    (II) NVIDIA(1): "TV:nvidia-auto-select+0+0"
    (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    (==) NVIDIA(1): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) NVIDIA(0): Initialized AGP GART.
    (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "CRT:nvidia-auto-select+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (==) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) NVIDIA(1): Initialized AGP GART.
    (II) NVIDIA(1): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(1): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(1): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(1): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(1): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(1): Config Options in the README.
    (II) NVIDIA(1): Setting mode "TV:nvidia-auto-select+0+0"
    (II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(1): Backing store disabled
    (==) NVIDIA(1): Silken mouse enabled
    (==) NVIDIA(1): DPMS enabled
    (==) 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) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) 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 relative axes
    (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) acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) 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" "us"
    (II) config/hal: Adding input device Microsoft Microsoft Wireless Optical Desktop® 1.00
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: always reports core events
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: Device: "/dev/input/event6"
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found 9 mouse buttons
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found scroll wheel(s)
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found relative axes
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found x and y relative axes
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found keys
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as mouse
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as keyboard
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: YAxisMapping: buttons 4 and 5
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Desktop® 1.00" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: (accel) keeping acceleration scheme 1
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: (accel) acceleration profile 0
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: initialized for relative axes.
    (II) config/hal: Adding input device Microsoft Microsoft Wireless Optical Desktop® 1.00
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: always reports core events
    (**) Microsoft Microsoft Wireless Optical Desktop® 1.00: Device: "/dev/input/event5"
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Found keys
    (II) Microsoft Microsoft Wireless Optical Desktop® 1.00: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Desktop® 1.00" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (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" "us"
    (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" "us"
    errors from errors.log, this stuff just repeats
    Mar 19 15:44:43 ArchDaemon kernel: ACPI: I/O resource smsc47m1 [0x680-0x6ff] conflicts with ACPI region IOPM [0x680-0x6ff]
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Unable to open firmware v4l-cx2341x-enc.fw (must be 376836 bytes)
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Did you put the firmware in the hotplug firmware directory?
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Unable to open firmware v4l-cx2341x-enc.fw (must be 376836 bytes)
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Did you put the firmware in the hotplug firmware directory?
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 3
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 0
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 1
    Mar 19 18:39:21 ArchDaemon kernel: ivtv0: Failed to initialize on minor 2
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 2
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 0
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 3
    Mar 19 18:39:22 ArchDaemon kernel: ivtv0: Failed to initialize on minor 1
    Mar 19 18:39:22 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    Mar 19 18:39:22 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    Mar 19 18:39:30 ArchDaemon kernel: sd 4:0:0:0: [sdb] Assuming drive cache: write through
    errors common in auth.log
    Mar 19 13:10:25 ArchDaemon sudo: desktopuser : pam_authenticate: Conversation error ; TTY=unknown ; PWD=/home/desktopuser ; USER=root ; COMMAND=/usr/lib/xfce4/xfsm-shutdown-helper
    Mar 19 13:10:30 ArchDaemon dbus-daemon: Rejected send message, 1 matched rules; type="method_call", sender=":1.10" (uid=1001 pid=1567 comm="exo-mount) interface="org.freedesktop.Hal.Device.Volume" member="Mount" error name="(unset)" requested_reply=0 destination="org.freedesktop.Hal" (uid=0 pid=1336 comm="/usr/sbin/hald))

  • [SOLVED] xorg: fbdev errors

    Hi,
    after upgrading xf86-input-evdev-2.9.0-2 xf86-input-synaptics-1.8.0-2 xf86-video-fbdev-0.4.4-3 xorg-server-1.16.0-6, startx  (from tty1) does not work any more (yes, I read the news. No stderr redirecting is done). My .xinitrc looks like that in  https://wiki.archlinux.org/index.php/Xinitrc
    /var/log/Xorg.1.log:
    [ 103.185]
    X.Org X Server 1.16.0
    Release Date: 2014-07-16
    [ 103.194] X Protocol Version 11, Revision 0
    [ 103.196] Build Operating System: Linux 3.15.5-2-ARCH x86_64
    [ 103.199] Current Operating System: Linux lite 3.15.8-1-ARCH #1 SMP PREEMPT Fri Aug 1 08:51:42 CEST 2014 x86_64
    [ 103.199] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 video=LVSD-1:d initrd=../initramfs-linux.img
    [ 103.209] Build Date: 31 July 2014 11:53:19AM
    [ 103.212]
    [ 103.214] Current version of pixman: 0.32.6
    [ 103.220] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 103.220] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 103.232] (==) Log file: "/home/hel/.local/share/xorg/Xorg.1.log", Time: Mon Aug 4 20:45:11 2014
    [ 103.235] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 103.239] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 103.239] (==) No Layout section. Using the first Screen section.
    [ 103.239] (==) No screen section available. Using defaults.
    [ 103.239] (**) |-->Screen "Default Screen Section" (0)
    [ 103.239] (**) | |-->Monitor "<default monitor>"
    [ 103.240] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 103.240] (==) Automatically adding devices
    [ 103.240] (==) Automatically enabling devices
    [ 103.240] (==) Automatically adding GPU devices
    [ 103.240] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 103.240] Entry deleted from font path.
    [ 103.240] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 103.240] Entry deleted from font path.
    [ 103.240] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 103.240] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 103.240] Entry deleted from font path.
    [ 103.240] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 103.240] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 103.240] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 103.240] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 103.240] (II) Loader magic: 0x818d80
    [ 103.240] (II) Module ABI versions:
    [ 103.240] X.Org ANSI C Emulation: 0.4
    [ 103.240] X.Org Video Driver: 18.0
    [ 103.241] X.Org XInput driver : 21.0
    [ 103.241] X.Org Server Extension : 8.0
    [ 103.248] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c3
    [ 103.249] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 103.251] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 103.255] (--) PCI:*(0:0:2:0) 8086:0be1:1025:061f rev 11, Mem @ 0x86000000/1048576, I/O @ 0x000050d0/8
    [ 103.255] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 103.255] (II) LoadModule: "glx"
    [ 103.256] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 103.261] (II) Module glx: vendor="X.Org Foundation"
    [ 103.261] compiled for 1.16.0, module version = 1.0.0
    [ 103.261] ABI class: X.Org Server Extension, version 8.0
    [ 103.261] (==) AIGLX enabled
    [ 103.261] (==) Matched modesetting as autoconfigured driver 0
    [ 103.261] (==) Matched fbdev as autoconfigured driver 1
    [ 103.261] (==) Matched vesa as autoconfigured driver 2
    [ 103.261] (==) Assigned the driver to the xf86ConfigLayout
    [ 103.261] (II) LoadModule: "modesetting"
    [ 103.262] (WW) Warning, couldn't open module modesetting
    [ 103.262] (II) UnloadModule: "modesetting"
    [ 103.262] (II) Unloading modesetting
    [ 103.262] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 103.262] (II) LoadModule: "fbdev"
    [ 103.263] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 103.263] (II) Module fbdev: vendor="X.Org Foundation"
    [ 103.263] compiled for 1.16.0, module version = 0.4.4
    [ 103.263] Module class: X.Org Video Driver
    [ 103.263] ABI class: X.Org Video Driver, version 18.0
    [ 103.263] (II) LoadModule: "vesa"
    [ 103.264] (WW) Warning, couldn't open module vesa
    [ 103.264] (II) UnloadModule: "vesa"
    [ 103.264] (II) Unloading vesa
    [ 103.264] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 103.264] (II) FBDEV: driver for framebuffer: fbdev
    [ 103.264] (++) using VT number 1
    [ 103.264] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 103.265] (II) Loading sub module "fbdevhw"
    [ 103.265] (II) LoadModule: "fbdevhw"
    [ 103.265] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 103.265] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 103.265] compiled for 1.16.0, module version = 0.0.2
    [ 103.265] ABI class: X.Org Video Driver, version 18.0
    [ 103.265] (EE) open /dev/fb0: Permission denied
    [ 103.265] (WW) Falling back to old probe method for fbdev
    [ 103.266] (II) Loading sub module "fbdevhw"
    [ 103.266] (II) LoadModule: "fbdevhw"
    [ 103.266] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 103.266] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 103.266] compiled for 1.16.0, module version = 0.0.2
    [ 103.266] ABI class: X.Org Video Driver, version 18.0
    [ 103.266] (EE) open /dev/fb0: Permission denied
    [ 103.266] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 103.266] (EE) Screen 0 deleted because of no matching config section.
    [ 103.266] (II) UnloadModule: "fbdev"
    [ 103.266] (II) UnloadSubModule: "fbdevhw"
    [ 103.266] (EE) Device(s) detected, but none match those in the config file.
    [ 103.266] (EE)
    Fatal server error:
    [ 103.266] (EE) no screens found(EE)
    [ 103.267] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 103.267] (EE) Please also check the log file at "/home/hel/.local/share/xorg/Xorg.1.log" for additional information.
    [ 103.267] (EE)
    [ 103.356] (EE) Server terminated with error (1). Closing log file.
    This is  /var/log/Xorg.0.log from a working startx before upgrading:
    [ 41.791]
    X.Org X Server 1.15.2
    Release Date: 2014-06-27
    [ 41.791] X Protocol Version 11, Revision 0
    [ 41.791] Build Operating System: Linux 3.15.1-1-ARCH x86_64
    [ 41.791] Current Operating System: Linux lite 3.15.8-1-ARCH #1 SMP PREEMPT Fri Aug 1 08:51:42 CEST 2014 x86_64
    [ 41.791] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8 video=LVSD-1:d initrd=../initramfs-linux.img
    [ 41.791] Build Date: 27 June 2014 07:32:26PM
    [ 41.791]
    [ 41.791] Current version of pixman: 0.32.6
    [ 41.791] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 41.791] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 41.792] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Aug 4 20:56:56 2014
    [ 41.854] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 41.907] (==) No Layout section. Using the first Screen section.
    [ 41.908] (==) No screen section available. Using defaults.
    [ 41.908] (**) |-->Screen "Default Screen Section" (0)
    [ 41.908] (**) | |-->Monitor "<default monitor>"
    [ 41.915] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 41.915] (==) Automatically adding devices
    [ 41.915] (==) Automatically enabling devices
    [ 41.915] (==) Automatically adding GPU devices
    [ 41.966] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 41.966] Entry deleted from font path.
    [ 42.012] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 42.012] Entry deleted from font path.
    [ 42.012] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 42.013] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 42.013] Entry deleted from font path.
    [ 42.013] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 42.013] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 42.013] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 42.013] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 42.014] (II) Loader magic: 0x811cc0
    [ 42.014] (II) Module ABI versions:
    [ 42.014] X.Org ANSI C Emulation: 0.4
    [ 42.014] X.Org Video Driver: 15.0
    [ 42.014] X.Org XInput driver : 20.0
    [ 42.014] X.Org Server Extension : 8.0
    [ 42.014] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 42.098] (--) PCI:*(0:0:2:0) 8086:0be1:1025:061f rev 11, Mem @ 0x86000000/1048576, I/O @ 0x000050d0/8
    [ 42.098] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 42.100] Initializing built-in extension Generic Event Extension
    [ 42.100] Initializing built-in extension SHAPE
    [ 42.100] Initializing built-in extension MIT-SHM
    [ 42.100] Initializing built-in extension XInputExtension
    [ 42.100] Initializing built-in extension XTEST
    [ 42.100] Initializing built-in extension BIG-REQUESTS
    [ 42.100] Initializing built-in extension SYNC
    [ 42.100] Initializing built-in extension XKEYBOARD
    [ 42.100] Initializing built-in extension XC-MISC
    [ 42.100] Initializing built-in extension SECURITY
    [ 42.100] Initializing built-in extension XINERAMA
    [ 42.100] Initializing built-in extension XFIXES
    [ 42.101] Initializing built-in extension RENDER
    [ 42.101] Initializing built-in extension RANDR
    [ 42.101] Initializing built-in extension COMPOSITE
    [ 42.101] Initializing built-in extension DAMAGE
    [ 42.101] Initializing built-in extension MIT-SCREEN-SAVER
    [ 42.101] Initializing built-in extension DOUBLE-BUFFER
    [ 42.101] Initializing built-in extension RECORD
    [ 42.101] Initializing built-in extension DPMS
    [ 42.101] Initializing built-in extension Present
    [ 42.101] Initializing built-in extension DRI3
    [ 42.101] Initializing built-in extension X-Resource
    [ 42.101] Initializing built-in extension XVideo
    [ 42.101] Initializing built-in extension XVideo-MotionCompensation
    [ 42.101] Initializing built-in extension XFree86-VidModeExtension
    [ 42.101] Initializing built-in extension XFree86-DGA
    [ 42.101] Initializing built-in extension XFree86-DRI
    [ 42.101] Initializing built-in extension DRI2
    [ 42.101] (II) LoadModule: "glx"
    [ 42.104] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 42.318] (II) Module glx: vendor="X.Org Foundation"
    [ 42.318] compiled for 1.15.2, module version = 1.0.0
    [ 42.318] ABI class: X.Org Server Extension, version 8.0
    [ 42.318] (==) AIGLX enabled
    [ 42.318] Loading extension GLX
    [ 42.318] (==) Matched modesetting as autoconfigured driver 0
    [ 42.318] (==) Matched fbdev as autoconfigured driver 1
    [ 42.318] (==) Matched vesa as autoconfigured driver 2
    [ 42.318] (==) Assigned the driver to the xf86ConfigLayout
    [ 42.318] (II) LoadModule: "modesetting"
    [ 42.359] (WW) Warning, couldn't open module modesetting
    [ 42.359] (II) UnloadModule: "modesetting"
    [ 42.359] (II) Unloading modesetting
    [ 42.359] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 42.359] (II) LoadModule: "fbdev"
    [ 42.360] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 42.369] (II) Module fbdev: vendor="X.Org Foundation"
    [ 42.369] compiled for 1.15.0, module version = 0.4.4
    [ 42.369] Module class: X.Org Video Driver
    [ 42.369] ABI class: X.Org Video Driver, version 15.0
    [ 42.370] (II) LoadModule: "vesa"
    [ 42.370] (WW) Warning, couldn't open module vesa
    [ 42.370] (II) UnloadModule: "vesa"
    [ 42.370] (II) Unloading vesa
    [ 42.370] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 42.371] (II) FBDEV: driver for framebuffer: fbdev
    [ 42.371] (++) using VT number 1
    [ 42.379] (II) Loading sub module "fbdevhw"
    [ 42.379] (II) LoadModule: "fbdevhw"
    [ 42.380] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 42.390] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 42.390] compiled for 1.15.2, module version = 0.0.2
    [ 42.390] ABI class: X.Org Video Driver, version 15.0
    [ 42.390] (**) FBDEV(0): claimed PCI slot 0@0:2:0
    [ 42.390] (II) FBDEV(0): using default device
    [ 42.390] (II) FBDEV(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 42.390] (==) FBDEV(0): Depth 24, (==) framebuffer bpp 32
    [ 42.390] (==) FBDEV(0): RGB weight 888
    [ 42.390] (==) FBDEV(0): Default visual is TrueColor
    [ 42.390] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 42.390] (II) FBDEV(0): hardware: psbdrmfb (video memory: 2400kB)
    [ 42.390] (II) FBDEV(0): checking modes against framebuffer device...
    [ 42.390] (II) FBDEV(0): checking modes against monitor...
    [ 42.390] (--) FBDEV(0): Virtual size is 1024x600 (pitch 1024)
    [ 42.390] (**) FBDEV(0): Built-in mode "current"
    [ 42.390] (==) FBDEV(0): DPI set to (96, 96)
    [ 42.391] (II) Loading sub module "fb"
    [ 42.391] (II) LoadModule: "fb"
    [ 42.391] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 42.429] (II) Module fb: vendor="X.Org Foundation"
    [ 42.429] compiled for 1.15.2, module version = 1.0.0
    [ 42.429] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 42.429] (**) FBDEV(0): using shadow framebuffer
    [ 42.429] (II) Loading sub module "shadow"
    [ 42.429] (II) LoadModule: "shadow"
    [ 42.429] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 42.433] (II) Module shadow: vendor="X.Org Foundation"
    [ 42.433] compiled for 1.15.2, module version = 1.1.0
    [ 42.434] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 42.434] (==) Depth 24 pixmap format is 32 bpp
    [ 42.945] (==) FBDEV(0): Backing store enabled
    [ 42.955] (==) FBDEV(0): DPMS enabled
    [ 42.955] (==) RandR enabled
    [ 43.020] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 43.021] (EE) AIGLX: reverting to software rendering
    [ 44.417] (II) AIGLX: Loaded and initialized swrast
    [ 44.417] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 45.031] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 45.031] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45.031] (II) LoadModule: "evdev"
    [ 45.032] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45.102] (II) Module evdev: vendor="X.Org Foundation"
    [ 45.102] compiled for 1.15.1, module version = 2.9.0
    [ 45.102] Module class: X.Org XInput Driver
    [ 45.102] ABI class: X.Org XInput driver, version 20.0
    [ 45.102] (II) Using input driver 'evdev' for 'Power Button'
    [ 45.102] (**) Power Button: always reports core events
    [ 45.102] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 45.103] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 45.103] (--) evdev: Power Button: Found keys
    [ 45.103] (II) evdev: Power Button: Configuring as keyboard
    [ 45.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event4"
    [ 45.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 45.103] (**) Option "xkb_rules" "evdev"
    [ 45.103] (**) Option "xkb_model" "pc104"
    [ 45.103] (**) Option "xkb_layout" "us"
    [ 45.212] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
    [ 45.212] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 45.212] (II) Using input driver 'evdev' for 'Video Bus'
    [ 45.212] (**) Video Bus: always reports core events
    [ 45.212] (**) evdev: Video Bus: Device: "/dev/input/event6"
    [ 45.212] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 45.212] (--) evdev: Video Bus: Found keys
    [ 45.212] (II) evdev: Video Bus: Configuring as keyboard
    [ 45.212] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12/event6"
    [ 45.212] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 45.212] (**) Option "xkb_rules" "evdev"
    [ 45.212] (**) Option "xkb_model" "pc104"
    [ 45.212] (**) Option "xkb_layout" "us"
    [ 45.214] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 45.214] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45.214] (II) Using input driver 'evdev' for 'Power Button'
    [ 45.214] (**) Power Button: always reports core events
    [ 45.214] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 45.214] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 45.214] (--) evdev: Power Button: Found keys
    [ 45.214] (II) evdev: Power Button: Configuring as keyboard
    [ 45.214] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event1"
    [ 45.214] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 45.214] (**) Option "xkb_rules" "evdev"
    [ 45.214] (**) Option "xkb_model" "pc104"
    [ 45.214] (**) Option "xkb_layout" "us"
    [ 45.216] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 45.216] (II) No input driver specified, ignoring this device.
    [ 45.216] (II) This device may have been added with another device file.
    [ 45.217] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 45.217] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 45.217] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 45.217] (**) Sleep Button: always reports core events
    [ 45.217] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 45.217] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 45.217] (--) evdev: Sleep Button: Found keys
    [ 45.217] (II) evdev: Sleep Button: Configuring as keyboard
    [ 45.217] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event2"
    [ 45.218] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 45.218] (**) Option "xkb_rules" "evdev"
    [ 45.218] (**) Option "xkb_model" "pc104"
    [ 45.218] (**) Option "xkb_layout" "us"
    [ 45.219] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 45.220] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 45.220] (II) No input driver specified, ignoring this device.
    [ 45.220] (II) This device may have been added with another device file.
    [ 45.221] (II) config/udev: Adding input device HDA Intel HDMI/DP,pcm=3 (/dev/input/event9)
    [ 45.221] (II) No input driver specified, ignoring this device.
    [ 45.221] (II) This device may have been added with another device file.
    [ 45.222] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
    [ 45.222] (II) No input driver specified, ignoring this device.
    [ 45.222] (II) This device may have been added with another device file.
    [ 45.223] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event11)
    [ 45.223] (II) No input driver specified, ignoring this device.
    [ 45.223] (II) This device may have been added with another device file.
    [ 45.224] (II) config/udev: Adding input device WebCam (/dev/input/event14)
    [ 45.224] (**) WebCam: Applying InputClass "evdev keyboard catchall"
    [ 45.224] (II) Using input driver 'evdev' for 'WebCam'
    [ 45.224] (**) WebCam: always reports core events
    [ 45.224] (**) evdev: WebCam: Device: "/dev/input/event14"
    [ 45.224] (--) evdev: WebCam: Vendor 0x4f2 Product 0xb367
    [ 45.224] (--) evdev: WebCam: Found keys
    [ 45.224] (II) evdev: WebCam: Configuring as keyboard
    [ 45.224] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3:1.0/input/input21/event14"
    [ 45.224] (II) XINPUT: Adding extended input device "WebCam" (type: KEYBOARD, id 10)
    [ 45.224] (**) Option "xkb_rules" "evdev"
    [ 45.224] (**) Option "xkb_model" "pc104"
    [ 45.224] (**) Option "xkb_layout" "us"
    [ 45.226] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 45.226] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 45.226] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 45.226] (**) AT Translated Set 2 keyboard: always reports core events
    [ 45.226] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 45.226] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 45.226] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 45.226] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 45.227] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 45.227] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 45.227] (**) Option "xkb_rules" "evdev"
    [ 45.227] (**) Option "xkb_model" "pc104"
    [ 45.227] (**) Option "xkb_layout" "us"
    [ 45.228] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event7)
    [ 45.228] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [ 45.229] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [ 45.229] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [ 45.229] (II) LoadModule: "synaptics"
    [ 45.229] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 45.247] (II) Module synaptics: vendor="X.Org Foundation"
    [ 45.247] compiled for 1.15.1, module version = 1.8.0
    [ 45.247] Module class: X.Org XInput Driver
    [ 45.247] ABI class: X.Org XInput driver, version 20.0
    [ 45.247] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [ 45.247] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 45.247] (**) Option "Device" "/dev/input/event7"
    [ 45.427] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 2320 (res 0)
    [ 45.428] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 928 (res 0)
    [ 45.428] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [ 45.428] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [ 45.428] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left right double triple
    [ 45.428] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [ 45.429] (**) Option "EmulateTwoFingerMinZ" "40"
    [ 45.429] (**) Option "EmulateTwoFingerMinW" "8"
    [ 45.429] (**) Option "VertEdgeScroll" "on"
    [ 45.429] (**) Option "HorizEdgeScroll" "on"
    [ 45.430] (**) Option "VertTwoFingerScroll" "on"
    [ 45.430] (**) Option "HorizTwoFingerScroll" "on"
    [ 45.430] (**) Option "TapButton1" "1"
    [ 45.430] (**) Option "TapButton2" "2"
    [ 45.430] (**) Option "TapButton3" "3"
    [ 45.431] (**) Option "CircularScrolling" "on"
    [ 45.431] (**) Option "CircScrollTrigger" "2"
    [ 45.431] (**) Option "CoastingSpeed" "0"
    [ 45.431] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 45.431] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 45.520] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event7"
    [ 45.520] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 12)
    [ 45.521] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 45.521] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [ 45.521] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.080
    [ 45.540] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [ 45.541] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [ 45.541] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [ 45.541] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [ 45.541] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 45.542] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
    [ 45.542] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 45.542] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 45.543] (II) No input driver specified, ignoring this device.
    [ 45.543] (II) This device may have been added with another device file.
    [ 45.544] (II) config/udev: Adding input device Acer WMI hotkeys (/dev/input/event12)
    [ 45.544] (**) Acer WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 45.544] (II) Using input driver 'evdev' for 'Acer WMI hotkeys'
    [ 45.544] (**) Acer WMI hotkeys: always reports core events
    [ 45.544] (**) evdev: Acer WMI hotkeys: Device: "/dev/input/event12"
    [ 45.544] (--) evdev: Acer WMI hotkeys: Vendor 0 Product 0
    [ 45.545] (--) evdev: Acer WMI hotkeys: Found keys
    [ 45.545] (II) evdev: Acer WMI hotkeys: Configuring as keyboard
    [ 45.545] (**) Option "config_info" "udev:/sys/devices/virtual/input/input19/event12"
    [ 45.545] (II) XINPUT: Adding extended input device "Acer WMI hotkeys" (type: KEYBOARD, id 13)
    [ 45.545] (**) Option "xkb_rules" "evdev"
    [ 45.545] (**) Option "xkb_model" "pc104"
    [ 45.545] (**) Option "xkb_layout" "us"
    [ 45.546] (II) config/udev: Adding input device Acer BMA150 accelerometer (/dev/input/event13)
    [ 45.546] (II) No input driver specified, ignoring this device.
    [ 45.546] (II) This device may have been added with another device file.
    [ 45.547] (II) config/udev: Adding input device Acer BMA150 accelerometer (/dev/input/js0)
    [ 45.547] (II) No input driver specified, ignoring this device.
    [ 45.547] (II) This device may have been added with another device file.
    Hence, I think that the error after upgrading can be seen from the following lines:
    [ 103.265] (II) Loading sub module "fbdevhw"
    [ 103.265] (II) LoadModule: "fbdevhw"
    [ 103.265] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 103.265] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 103.265] compiled for 1.16.0, module version = 0.0.2
    [ 103.265] ABI class: X.Org Video Driver, version 18.0
    [ 103.265] (EE) open /dev/fb0: Permission denied
    [ 103.265] (WW) Falling back to old probe method for fbdev
    [ 103.266] (II) Loading sub module "fbdevhw"
    [ 103.266] (II) LoadModule: "fbdevhw"
    [ 103.266] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 103.266] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 103.266] compiled for 1.16.0, module version = 0.0.2
    [ 103.266] ABI class: X.Org Video Driver, version 18.0
    [ 103.266] (EE) open /dev/fb0: Permission denied
    [ 103.266] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 103.266] (EE) Screen 0 deleted because of no matching config section.
    [ 103.266] (II) UnloadModule: "fbdev"
    [ 103.266] (II) UnloadSubModule: "fbdevhw"
    What is wrong with /dev/fb0 and the fbdev module? ?
    After upgrading, the following files were in /usr/share/X11/xorg.conf.d:
    10-evdev.conf
    # Catch-all evdev loader for udev-based systems
    # We don't simply match on any device since that also adds accelerometers
    # and other devices that we don't really want to use. The list below
    # matches everything but joysticks.
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev tablet catchall"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    10-quirks.conf
    # Collection of quirks and blacklist/whitelists for specific devices.
    # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
    # http://bugs.freedesktop.org/show_bug.cgi?id=22442
    Section "InputClass"
    Identifier "ThinkPad HDAPS accelerometer blacklist"
    MatchProduct "ThinkPad HDAPS accelerometer data"
    Option "Ignore" "on"
    EndSection
    # https://bugzilla.redhat.com/show_bug.cgi?id=523914
    # Mouse does not move in PV Xen guest
    # Explicitly tell evdev to not ignore the absolute axes.
    Section "InputClass"
    Identifier "Xen Virtual Pointer axis blacklist"
    MatchProduct "Xen Virtual Pointer"
    Option "IgnoreAbsoluteAxes" "off"
    Option "IgnoreRelativeAxes" "off"
    EndSection
    # https://bugs.freedesktop.org/show_bug.cgi?id=55867
    # Bug 55867 - Doesn't know how to tag XI_TRACKBALL
    Section "InputClass"
    Identifier "Tag trackballs as XI_TRACKBALL"
    MatchProduct "trackball"
    MatchDriver "evdev"
    Option "TypeName" "TRACKBALL"
    EndSection
    # https://bugs.freedesktop.org/show_bug.cgi?id=62831
    # Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
    Section "InputClass"
    Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
    MatchProduct "La-VIEW Technology Naos 5000 Mouse"
    MatchDriver "evdev"
    Option "TypeName" "MOUSE"
    EndSection
    nvidia-drm-outputclass.conf
    Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    EndSection
    And  in /etc/X11/xorg.conf.d/50-.synaptics.conf:
    # Example xorg.conf.d snippet that assigns the touchpad driver
    # to all touchpads. See xorg.conf.d(5) for more information on
    # InputClass.
    # DO NOT EDIT THIS FILE, your distribution will likely overwrite
    # it when updating. Copy (and rename) this file into
    # /etc/X11/xorg.conf.d first.
    # Additional options may be added in the form of
    # Option "OptionName" "value"
    Section "InputClass"
    Identifier "touchpad catchall"
    Driver "synaptics"
    MatchIsTouchpad "on"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    #my changesC
    Option "VertEdgeScroll" "on"
    Option "VertTwoFingerScroll" "on"
    Option "HorizEdgeScroll" "on"
    Option "HorizTwoFingerScroll" "on"
    Option "CircularScrolling" "on"
    Option "CircScrollTrigger" "2"
    Option "EmulateTwoFingerMinZ" "40"
    Option "EmulateTwoFingerMinW" "8"
    Option "CoastingSpeed" "0"
    # This option is recommend on all Linux systems using evdev, but cannot be
    # enabled by default. See the following link for details:
    # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
    MatchDevicePath "/dev/input/event*"
    EndSection
    Section "InputClass"
    Identifier "touchpad ignore duplicates"
    MatchIsTouchpad "on"
    MatchOS "Linux"
    MatchDevicePath "/dev/input/mouse*"
    Option "Ignore" "on"
    EndSection
    # This option enables the bottom right corner to be a right button on
    # non-synaptics clickpads.
    # This option is only interpreted by clickpads.
    Section "InputClass"
    Identifier "Default clickpad buttons"
    MatchDriver "synaptics"
    Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    # To disable the bottom edge area so the buttons only work as buttons,
    # not for movement, set the AreaBottomEdge
    # Option "AreaBottomEdge" "82%"
    EndSection
    # This option disables software buttons on Apple touchpads.
    # This option is only interpreted by clickpads.
    Section "InputClass"
    Identifier "Disable clickpad buttons on Apple touchpads"
    MatchProduct "Apple|bcm5974"
    MatchDriver "synaptics"
    Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
    EndSection
    Before upgrading, 50-synaptics.conf and 10-evdev.conf were the same in /etc/x11/xorg.conf.d, some entries were not in 10-quirks.conf and nvidia-drm-outputclass.conf was not there.
    Any ideas?
    Best regards
    Last edited by hel (2014-08-05 16:45:42)

    This is the error:
    [ 103.265] (EE) open /dev/fb0: Permission denied
    Possibly no one tested the new systemd method with the fbdev driver. Does it work if you use xf86-video-modesetting instead of xf86-video-fbdev? If not, you'll likely need to configure X to start the old way (as root) as described in the news.

  • [Solved] Problem with xf86-video-intel after upgrade to xorg 1.16

    Hi everyone,
    since the upgrade to xorg-server 1.16 i can't get X to work again on my thinkpad R50e with an old intel integrated chip (Intel Extreme Graphics 2).
    I first encountered the error "cannot open /dev/tty0": http://okraits.de/upload/xorg/Xorg.0.log
    Then i created /etc/X11/Xwrapper.config: http://okraits.de/upload/xorg/Xwrapper.config
    Then i got the error "failed to set mode": http://okraits.de/upload/xorg/Xorg.1.log
    My xorg.conf looks like this: http://okraits.de/upload/xorg/xorg.conf
    I start X with startx and this .xinitrc: http://okraits.de/upload/xorg/.xinitrc
    I have no clue how to fix this. Any help would be much appreciated!
    Greetings,
    Oliver
    Last edited by okraits (2014-08-08 06:33:09)

    lolilolicon wrote:
    How do you start X? Note you must start X from the same VT where you login, if you use Xorg.bin (no setuid). From your log there're mentions of /dev/tty0 and "Using VT number 2", so I suppose that might be the problem.
    If you simply use `startx`, the actual process running will be something like
    /usr/bin/Xorg.bin -nolisten tcp :0 -auth /tmp/serverauth.XXXXXXXXXX vt1
    Note the `vt1` in the line must be specified, where 1 is the value of $XDG_VTNR in the VT where you login.
    Edit
    In my log there's something yours are missing
    [ 45.465] (++) using VT number 1
    [ 45.465] (--) controlling tty is VT number 1, auto-enabling KeepTty
    I login at tty1 (which is the first one visible after boot) and run startx from there.
    I added the following to my .xinitrc:
    echo "vt: $XDG_VTNR"
    The output was:
    vt: 1
    That would be ok, right? Or is it $XDG_VTNR + 1?
    So i am wondering what is forcing X to use vt 2. Or how i can tell X to use vt 1.
    Last edited by okraits (2014-08-07 12:37:17)

  • Logging out does not drop me to console but a black screen

    Recent pacman -Syu upgraded me to latest xorg-server and I have this problem: logging out does not drop me back to console but a black screen and after 30 seconds, a blinking cursor. Nothing works and I have to reboot. If I choose to reboot (instead of logout) I get the same result except that eventually the computer reboots. Using nv - no problems. Using simple nvidia (single screen) - no problem. (I have a monitor and tv-out setup). Problem remains whether I use xfce4 or fluxbox. And the ctrl-alt-backspace keyboard shortcut results in the same black screen. Xorg.0.log tells me nothing. Before the upgrade, no problem.
    I usually use startx and I have ck-launch-session etc in my .xinitrc. I use the latest nvidia-96xx driver and have no other X problem. Everything works, including the tv-out.
    This is a minor inconvenience really and I usually switch to a console and as root killall X if I need to log myself out for any reason. But if anyone as a clue as to why this is so, or suffers the same problem, do let me know. Thanks.

    Thanks guys...
    @ckristi - I don't use kdm. I startx from console when I want to go into X.
    @madtux - I guess I will have to read up on kernel mode setting and KMS - I actually don't know what you are referring to although I have seen KMS refered to in this forum with reference to xorg. Any links? Do note no problems with nv and single monitor nvidia. Hopefully the cure is not worse than the disease.

  • Not able to start Gnome via GDM

    I have just installed Archlinux on an old laptop (HP ZV5000), which I want to bring back to life as there is always a long queue to us the other PC in the family
    Everything went smooth, except the last step: when I try to login via GDM, the screen becomes gry (as if it is entering the Gnome environment, but then it is stuck there.
    Strange thing is that If I disable GDM and run Gnome with startx from the command line, then everything is working fine
    Currently I am anyway using the laptop that way, but I still feel uncomfortable as this is not the way it should work
    I have tried to ssh to the machine while stuck into the grey screen and this is what I've got while checking the status of the GDM service:
    # systemctl status gdm.service
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; disabled)
    Active: active (running) since mer 2013-09-04 20:32:02 CEST; 6min ago
    Main PID: 348 (gdm)
    CGroup: name=systemd:/system/gdm.service
    ├─348 /usr/bin/gdm
    ├─353 /usr/lib/gdm/gdm-simple-slave --display-id /org/gnome/DisplayManager/Displays/_0
    ├─357 /usr/bin/Xorg :0 -background none -verbose -auth /var/run/gdm/auth-for-gdm-iWnxiD/database -seat seat0 -nolisten tcp vt1
    ├─376 gdm-session-worker [pam/gdm-launch-environment]
    └─504 gdm-session-worker [pam/gdm-password]
    set 04 20:32:02 ZV5000 systemd[1]: Starting GNOME Display Manager...
    set 04 20:32:02 ZV5000 systemd[1]: Started GNOME Display Manager.
    set 04 20:32:05 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    set 04 20:32:52 ZV5000 gdm-password][504]: pam_unix(gdm-password:session): session opened for user guidobelix by (unknown)(uid=0)
    After 10-15 minutes I was back to GDM login screen and the servise status changed in this way:
    # systemctl status gdm.service
    gdm.service - GNOME Display Manager
    Loaded: loaded (/usr/lib/systemd/system/gdm.service; disabled)
    Active: active (running) since mer 2013-09-04 20:32:02 CEST; 19min ago
    Main PID: 348 (gdm)
    CGroup: name=systemd:/system/gdm.service
    ├─ 348 /usr/bin/gdm
    ├─ 376 gdm-session-worker [pam/gdm-launch-environment]
    ├─2095 /usr/lib/gdm/gdm-simple-slave --display-id /org/gnome/DisplayManager/Displays/_0
    ├─2099 /usr/bin/Xorg :0 -background none -verbose -auth /var/run/gdm/auth-for-gdm-OXL0yo/database -seat seat0 -nolisten tcp vt1
    └─2107 gdm-session-worker [pam/gdm-launch-environment]
    set 04 20:32:02 ZV5000 systemd[1]: Starting GNOME Display Manager...
    set 04 20:32:02 ZV5000 systemd[1]: Started GNOME Display Manager.
    set 04 20:32:05 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    set 04 20:32:52 ZV5000 gdm-password][504]: pam_unix(gdm-password:session): session opened for user guidobelix by (unknown)(uid=0)
    set 04 20:49:46 ZV5000 gdm[348]: **
    set 04 20:49:46 ZV5000 gdm[348]: ERROR:gdm-slave.c:1094:_get_uid_and_gid_for_user: assertion failed: (username != NULL)
    set 04 20:49:46 ZV5000 systemd-coredump[2093]: Process 353 (gdm-simple-slav) dumped core.
    set 04 20:49:52 ZV5000 gdm[348]: Failed to give slave programs access to the display. Trying to proceed.
    Does anybody have a clue on what the problem could be?
    Thanks a lot
    Guido
    Last edited by Guidobelix (2013-09-05 10:35:06)

    Sorry for the late reply.
    Yes, I did, but there are no differences between the Xorg.0.log that is created when I (unsuccessfully) start Gnome via GDM or when I start it with startx. There is an error in both cases, but Gnome fails only in one of those two.
    This is what I get
    [ 370.636]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 370.637] X Protocol Version 11, Revision 0
    [ 370.637] Build Operating System: Linux 3.9.7-1-ARCH i686
    [ 370.637] Current Operating System: Linux ZV5000 3.10.10-1-ARCH #1 SMP PREEMPT Fri Aug 30 12:11:59 CEST 2013 i686
    [ 370.637] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5e73dfe5-d72e-4392-b0cc-f2f940ad97e9 rw quiet
    [ 370.638] Build Date: 01 July 2013 10:52:25AM
    [ 370.638]
    [ 370.638] Current version of pixman: 0.30.2
    [ 370.639] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 370.639] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 370.640] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 10 19:56:33 2013
    [ 370.682] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 370.682] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 370.699] (==) No Layout section. Using the first Screen section.
    [ 370.699] (==) No screen section available. Using defaults.
    [ 370.699] (**) |-->Screen "Default Screen Section" (0)
    [ 370.699] (**) | |-->Monitor "<default monitor>"
    [ 370.712] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 370.712] (==) Automatically adding devices
    [ 370.712] (==) Automatically enabling devices
    [ 370.712] (==) Automatically adding GPU devices
    [ 370.734] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 370.734] Entry deleted from font path.
    [ 370.740] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 370.740] Entry deleted from font path.
    [ 370.740] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 370.740] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 370.740] Entry deleted from font path.
    [ 370.740] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 370.740] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 370.740] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 370.740] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 370.741] (II) Loader magic: 0x8258620
    [ 370.741] (II) Module ABI versions:
    [ 370.741] X.Org ANSI C Emulation: 0.4
    [ 370.741] X.Org Video Driver: 14.1
    [ 370.741] X.Org XInput driver : 19.1
    [ 370.741] X.Org Server Extension : 7.0
    [ 370.741] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 370.744] (--) PCI:*(0:1:5:0) 1002:5835:103c:006b rev 0, Mem @ 0xe0000000/268435456, 0xd0100000/65536, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
    [ 370.744] Initializing built-in extension Generic Event Extension
    [ 370.745] Initializing built-in extension SHAPE
    [ 370.745] Initializing built-in extension MIT-SHM
    [ 370.745] Initializing built-in extension XInputExtension
    [ 370.745] Initializing built-in extension XTEST
    [ 370.745] Initializing built-in extension BIG-REQUESTS
    [ 370.746] Initializing built-in extension SYNC
    [ 370.746] Initializing built-in extension XKEYBOARD
    [ 370.746] Initializing built-in extension XC-MISC
    [ 370.746] Initializing built-in extension SECURITY
    [ 370.746] Initializing built-in extension XINERAMA
    [ 370.746] Initializing built-in extension XFIXES
    [ 370.747] Initializing built-in extension RENDER
    [ 370.747] Initializing built-in extension RANDR
    [ 370.747] Initializing built-in extension COMPOSITE
    [ 370.747] Initializing built-in extension DAMAGE
    [ 370.747] Initializing built-in extension MIT-SCREEN-SAVER
    [ 370.747] Initializing built-in extension DOUBLE-BUFFER
    [ 370.748] Initializing built-in extension RECORD
    [ 370.748] Initializing built-in extension DPMS
    [ 370.748] Initializing built-in extension X-Resource
    [ 370.748] Initializing built-in extension XVideo
    [ 370.753] Initializing built-in extension XVideo-MotionCompensation
    [ 370.759] Initializing built-in extension XFree86-VidModeExtension
    [ 370.764] Initializing built-in extension XFree86-DGA
    [ 370.769] Initializing built-in extension XFree86-DRI
    [ 370.774] Initializing built-in extension DRI2
    [ 370.774] (II) "glx" will be loaded by default.
    [ 370.774] (II) LoadModule: "dri2"
    [ 370.774] (II) Module "dri2" already built-in
    [ 370.774] (II) LoadModule: "glamoregl"
    [ 370.793] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 370.923] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 370.923] compiled for 1.14.2, module version = 0.5.1
    [ 370.923] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 370.923] (II) LoadModule: "glx"
    [ 370.924] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 370.950] (II) Module glx: vendor="X.Org Foundation"
    [ 370.950] compiled for 1.14.2, module version = 1.0.0
    [ 370.950] ABI class: X.Org Server Extension, version 7.0
    [ 370.950] (==) AIGLX enabled
    [ 370.956] Loading extension GLX
    [ 370.956] (==) Matched ati as autoconfigured driver 0
    [ 370.956] (==) Matched ati as autoconfigured driver 1
    [ 370.956] (==) Matched vesa as autoconfigured driver 2
    [ 370.956] (==) Matched modesetting as autoconfigured driver 3
    [ 370.956] (==) Matched fbdev as autoconfigured driver 4
    [ 370.956] (==) Assigned the driver to the xf86ConfigLayout
    [ 370.956] (II) LoadModule: "ati"
    [ 370.957] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 370.971] (II) Module ati: vendor="X.Org Foundation"
    [ 370.971] compiled for 1.14.2, module version = 7.2.0
    [ 370.971] Module class: X.Org Video Driver
    [ 370.971] ABI class: X.Org Video Driver, version 14.1
    [ 370.971] (II) LoadModule: "radeon"
    [ 370.971] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 371.010] (II) Module radeon: vendor="X.Org Foundation"
    [ 371.010] compiled for 1.14.2, module version = 7.2.0
    [ 371.010] Module class: X.Org Video Driver
    [ 371.010] ABI class: X.Org Video Driver, version 14.1
    [ 371.010] (II) LoadModule: "vesa"
    [ 371.010] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 371.022] (II) Module vesa: vendor="X.Org Foundation"
    [ 371.023] compiled for 1.14.0, module version = 2.3.2
    [ 371.023] Module class: X.Org Video Driver
    [ 371.023] ABI class: X.Org Video Driver, version 14.1
    [ 371.023] (II) LoadModule: "modesetting"
    [ 371.023] (WW) Warning, couldn't open module modesetting
    [ 371.023] (II) UnloadModule: "modesetting"
    [ 371.023] (II) Unloading modesetting
    [ 371.023] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 371.023] (II) LoadModule: "fbdev"
    [ 371.023] (WW) Warning, couldn't open module fbdev
    [ 371.023] (II) UnloadModule: "fbdev"
    [ 371.024] (II) Unloading fbdev
    [ 371.024] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 371.024] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, 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, 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, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI
    [ 371.035] (II) VESA: driver for VESA chipsets: vesa
    [ 371.035] (++) using VT number 1
    [ 371.049] (II) [KMS] Kernel modesetting enabled.
    [ 371.049] (WW) Falling back to old probe method for vesa
    [ 371.049] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 371.049] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 371.049] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 371.049] (==) RADEON(0): Default visual is TrueColor
    [ 371.049] (==) RADEON(0): RGB weight 888
    [ 371.049] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 371.049] (--) RADEON(0): Chipset: "ATI Radeon Mobility 9100 IGP (U3) 5835" (ChipID = 0x5835)
    [ 371.049] (II) Loading sub module "dri2"
    [ 371.049] (II) LoadModule: "dri2"
    [ 371.049] (II) Module "dri2" already built-in
    [ 371.049] (II) Loading sub module "exa"
    [ 371.049] (II) LoadModule: "exa"
    [ 371.050] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 371.058] (II) Module exa: vendor="X.Org Foundation"
    [ 371.058] compiled for 1.14.2, module version = 2.6.0
    [ 371.058] ABI class: X.Org Video Driver, version 14.1
    [ 371.058] (II) RADEON(0): KMS Color Tiling: disabled
    [ 371.058] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 371.058] (II) RADEON(0): KMS Pageflipping: enabled
    [ 371.058] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 371.081] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 371.081] (II) RADEON(0): Output LVDS has no monitor section
    [ 371.087] (II) RADEON(0): Output S-video has no monitor section
    [ 371.109] (II) RADEON(0): EDID for output VGA-0
    [ 371.109] (II) RADEON(0): EDID for output LVDS
    [ 371.109] (II) RADEON(0): Printing probed modes for output LVDS
    [ 371.109] (II) RADEON(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 802 808 823 (49.3 kHz eP)
    [ 371.109] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 371.109] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 371.109] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 371.109] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 371.109] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 371.115] (II) RADEON(0): EDID for output S-video
    [ 371.115] (II) RADEON(0): Output VGA-0 disconnected
    [ 371.115] (II) RADEON(0): Output LVDS connected
    [ 371.115] (II) RADEON(0): Output S-video disconnected
    [ 371.115] (II) RADEON(0): Using exact sizes for initial modes
    [ 371.115] (II) RADEON(0): Output LVDS using initial mode 1280x800
    [ 371.116] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 371.116] (II) RADEON(0): mem size init: gart size :1dff000 vram size: s:8000000 visible:7bd8000
    [ 371.116] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 371.116] (==) RADEON(0): DPI set to (96, 96)
    [ 371.116] (II) Loading sub module "fb"
    [ 371.116] (II) LoadModule: "fb"
    [ 371.116] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 371.129] (II) Module fb: vendor="X.Org Foundation"
    [ 371.129] compiled for 1.14.2, module version = 1.0.0
    [ 371.129] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 371.129] (II) Loading sub module "ramdac"
    [ 371.129] (II) LoadModule: "ramdac"
    [ 371.129] (II) Module "ramdac" already built-in
    [ 371.129] (II) UnloadModule: "vesa"
    [ 371.129] (II) Unloading vesa
    [ 371.130] (--) Depth 24 pixmap format is 32 bpp
    [ 371.131] (II) RADEON(0): [DRI2] Setup complete
    [ 371.131] (II) RADEON(0): [DRI2] DRI driver: r200
    [ 371.131] (II) RADEON(0): [DRI2] VDPAU driver: r200
    [ 371.131] (II) RADEON(0): Front buffer size: 4000K
    [ 371.131] (II) RADEON(0): VRAM usage limit set to 110505K
    [ 371.133] (==) RADEON(0): Backing store disabled
    [ 371.133] (II) RADEON(0): Direct rendering enabled
    [ 371.133] (II) RADEON(0): Render acceleration enabled for R200 type cards.
    [ 371.133] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 371.133] (II) EXA(0): Driver registered support for the following operations:
    [ 371.134] (II) Solid
    [ 371.134] (II) Copy
    [ 371.134] (II) Composite (RENDER acceleration)
    [ 371.134] (II) UploadToScreen
    [ 371.134] (II) DownloadFromScreen
    [ 371.134] (II) RADEON(0): Acceleration enabled
    [ 371.134] (==) RADEON(0): DPMS enabled
    [ 371.134] (==) RADEON(0): Silken mouse enabled
    [ 371.134] (II) RADEON(0): Set up textured video
    [ 371.134] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 371.134] (II) RADEON(0): [XvMC] Extension initialized.
    [ 371.134] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 371.135] (--) RandR disabled
    [ 371.294] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 371.294] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 371.294] (II) AIGLX: enabled GLX_ARB_create_context
    [ 371.294] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 371.294] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 371.294] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 371.294] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 371.295] (II) AIGLX: Loaded and initialized r200
    [ 371.295] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 371.296] (II) RADEON(0): Setting screen physical size to 338 x 211
    [ 371.642] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 371.642] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 371.642] (II) LoadModule: "evdev"
    [ 371.642] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 371.670] (II) Module evdev: vendor="X.Org Foundation"
    [ 371.670] compiled for 1.14.2, module version = 2.8.1
    [ 371.670] Module class: X.Org XInput Driver
    [ 371.670] ABI class: X.Org XInput driver, version 19.1
    [ 371.670] (II) Using input driver 'evdev' for 'Power Button'
    [ 371.670] (**) Power Button: always reports core events
    [ 371.670] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 371.670] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 371.670] (--) evdev: Power Button: Found keys
    [ 371.670] (II) evdev: Power Button: Configuring as keyboard
    [ 371.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 371.670] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 371.670] (**) Option "xkb_rules" "evdev"
    [ 371.670] (**) Option "xkb_model" "pc104"
    [ 371.670] (**) Option "xkb_layout" "us"
    [ 371.707] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 371.708] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 371.708] (II) Using input driver 'evdev' for 'Video Bus'
    [ 371.708] (**) Video Bus: always reports core events
    [ 371.708] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 371.708] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 371.708] (--) evdev: Video Bus: Found keys
    [ 371.708] (II) evdev: Video Bus: Configuring as keyboard
    [ 371.708] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/LNXVIDEO:00/input/input4/event4"
    [ 371.708] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 371.708] (**) Option "xkb_rules" "evdev"
    [ 371.708] (**) Option "xkb_model" "pc104"
    [ 371.708] (**) Option "xkb_layout" "us"
    [ 371.709] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 371.709] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 371.709] (II) Using input driver 'evdev' for 'Power Button'
    [ 371.709] (**) Power Button: always reports core events
    [ 371.709] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 371.709] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 371.709] (--) evdev: Power Button: Found keys
    [ 371.709] (II) evdev: Power Button: Configuring as keyboard
    [ 371.709] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 371.709] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 371.709] (**) Option "xkb_rules" "evdev"
    [ 371.709] (**) Option "xkb_model" "pc104"
    [ 371.709] (**) Option "xkb_layout" "us"
    [ 371.710] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 371.710] (II) No input driver specified, ignoring this device.
    [ 371.710] (II) This device may have been added with another device file.
    [ 371.710] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 371.711] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 371.711] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 371.711] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 371.711] (**) AT Translated Set 2 keyboard: always reports core events
    [ 371.711] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 371.711] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 371.711] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 371.711] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 371.711] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 371.711] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 371.711] (**) Option "xkb_rules" "evdev"
    [ 371.711] (**) Option "xkb_model" "pc104"
    [ 371.711] (**) Option "xkb_layout" "us"
    [ 371.712] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event6)
    [ 371.712] (**) PS/2 Mouse: Applying InputClass "evdev pointer catchall"
    [ 371.712] (II) Using input driver 'evdev' for 'PS/2 Mouse'
    [ 371.712] (**) PS/2 Mouse: always reports core events
    [ 371.712] (**) evdev: PS/2 Mouse: Device: "/dev/input/event6"
    [ 371.712] (--) evdev: PS/2 Mouse: Vendor 0x2 Product 0x8
    [ 371.712] (--) evdev: PS/2 Mouse: Found 3 mouse buttons
    [ 371.712] (--) evdev: PS/2 Mouse: Found relative axes
    [ 371.712] (--) evdev: PS/2 Mouse: Found x and y relative axes
    [ 371.712] (II) evdev: PS/2 Mouse: Configuring as mouse
    [ 371.712] (**) evdev: PS/2 Mouse: YAxisMapping: buttons 4 and 5
    [ 371.712] (**) evdev: PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 371.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input6/event6"
    [ 371.712] (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE, id 10)
    [ 371.713] (II) evdev: PS/2 Mouse: initialized for relative axes.
    [ 371.713] (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration profile 0
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration factor: 2.000
    [ 371.713] (**) PS/2 Mouse: (accel) acceleration threshold: 4
    [ 371.713] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse0)
    [ 371.714] (II) No input driver specified, ignoring this device.
    [ 371.714] (II) This device may have been added with another device file.
    [ 371.714] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event7)
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 371.714] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
    [ 371.714] (II) LoadModule: "synaptics"
    [ 371.714] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 371.721] (II) Module synaptics: vendor="X.Org Foundation"
    [ 371.722] compiled for 1.14.1, module version = 1.7.1
    [ 371.722] Module class: X.Org XInput Driver
    [ 371.722] ABI class: X.Org XInput driver, version 19.1
    [ 371.722] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 371.722] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 371.722] (**) Option "Device" "/dev/input/event7"
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023 (res 0)
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767 (res 0)
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 371.820] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 15
    [ 371.820] (**) Option "TapButton1" "1"
    [ 371.820] (**) Option "TapButton2" "2"
    [ 371.820] (**) Option "TapButton3" "3"
    [ 371.820] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 371.820] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 371.873] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input7/event7"
    [ 371.873] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 11)
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MaxSpeed is now 1.75
    [ 371.873] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) AccelFactor is now 0.156
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 371.873] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 371.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 371.874] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 371.874] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 371.874] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 371.874] (II) No input driver specified, ignoring this device.
    [ 371.875] (II) This device may have been added with another device file.
    [ 778.808] (II) UnloadModule: "synaptics"
    [ 778.809] (II) evdev: PS/2 Mouse: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Power Button: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Video Bus: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.809] (II) evdev: Power Button: Close
    [ 778.809] (II) UnloadModule: "evdev"
    [ 778.836] (EE) Server terminated successfully (0). Closing log file.
    Any other idea?

Maybe you are looking for

  • Is the back housing available for iTouch 4th Gen 16GB

    Is the back housing available for iTouch 4th Gen 16GB

  • Play Count and i tunes, doesn't add the count correctly

    How do I get all my play counts on iTunes. It seems to only list the play count from my first Ipod only. I have 6 Ipods all sync' d with the same I Tunes?

  • PostScript file

    whether or not it will be possible to produce a PostScript file from Business Objects XI 3.1in Windows printer or Unix printer?

  • Desk top Goods Confirmation in SRM portal

    Hi Friends, Need your help on the following query 1. In R/3,  if I want to make one GR (MIGO) for more than one PO it is possible. i.e. one GR can have more than one items of different PO  Similarly , if I want to make GR through SRM (classic Scenari

  • Need Web reporting settings

    Hi  Friends, I am working in BI 7.0 . Trying to execute simple Web reporting but can not display report in Internet explorer. I think between BI and Internet Explorer need settings. Anyone send me settings Details. Regards, Ram.