Grub doesn't detect Windows partition (UEFI)/ xorg won't start either

Hey guys,
1) Looking for some help here. I've installed Arch on to my desktop and I'm running into some issues with my dual boot (UEFI).
When I went to create my Arch partitions I was running into some issues with cgdisk, but I was able to fix it and able to create a successful partition table. However, I don't think for some reason my windows installation had an EFI partiton. Which is odd, because I'm pretty sure it was setup with GPT & UEFI, which if I understand it correctly needs an EFI partition. Anyways I created my own efi partition and made a directory in /boot/efi for grub. I installed grub and it worked fine, detected Arch and everything. I followed the step to install os-prober first too. I think the error lies in the fact that I didn't mount the windows EFI, I created my own. Which again brings me back to: should I have had an EFI partition created by windows? I'd like to be able to get back to my windows system if possible, if I messed something up with the windows bootloader and it's not salvageable, it's not a huge deal.
The table is the following
sda1 ntfs system reserved (windows)
sda2 ntfs (windows partition)
sda3 ext4 (root partition)
sda4 fat32 (efi boot partiton-not windows)
sda5 ext5 (home partition)
2) I'm also having issues get X started. I think it is a driver issue but I can't be sure. I have 2 nvidia GTX 660s in SLI. I installed xorg-server and then installed both nvidia and nvidia-304xx. But whenever I try to run startx I get the following error
(EE) no screens found(EE)
xinit: giving up
this is with gnome installed and my .xinitrc file in my user directory.
I check out the log file of /var/log/Xorg.0.log and get the following errors
(EE) Failed to load module "nouveau" (module does not exist, 0)
(EE) Failed to load module "nv" (module does not exist, 0)
(EE) Failed to load module "modesetting" (module does not exist 0)
(EE) Failed to load module "fbdev" (module does not exist 0)
(EE) Failed to load module "vesa" (module does not exist, 0)
(EE) no drivers available
(EE) so screens found
Not sure what I am missing here. I've tried reinstalling xorg and gnome and all the drivers I could think of that the error above listed. However it always throws the same error.
Thanks for you time, if you need anything else I would be happy to provide it!

FWIW: reFind doesn;t mind multiple GPTs. I can't speak for GRUB. But shouldn't you be able to boot into the setup (what used to be "BIOS") and see if there is a boot order there or something? If your firmware is similar to mine, you can set "boot options" and allow the machine to let you pick a boot device. Windows should show there if it's available.

Similar Messages

  • GRUB doesn't detect NTFS partition

    I recently installed windows to my second hard disk (/dev/sdb2 or (hd1,msdos2)), but GRUB fails to recognize the NTFS file system on it.
    GRUB> ls
    (hd0,msdos1) (hd0,msdos2) (hd0,msdos3) (hd0,msdos4) (hd1,msdos1) (hd1,msdos2)
    GRUB> ls (hd1,msdos1)
    Partition (hd1,msdos1): File system type ext* # etc
    GRUB> ls (hd1,msdos2)
    Partition (hd1,msdos2): No known file system detected
    And yet there is a fully-functioning NTFS file system on this partition. Why do I know this? Because when I boot the entire hard disk from within QEMU, suddenly...
    GRUB from within QEMU> ls (hd1,msdos2)
    Partition (hd1,msdos2): File system type ntfs # etc
    ... and windows successfully boots from the disk.
    I realise QEMU is not really comparable to BIOS, but I wonder why GRUB fails to recognize this single one NTFS partition, while it does recognize the other ext4 partition... Now, this isn't currently a severe issue, since I'm simply booting the windows partition with QEMU. The main reason I need to boot windows is to run some graphics-heavy programs, and as far as I know, QEMU can't do Direct3D emulation (or hardware acceleration?).
    Last edited by DeatzoSeol (2015-05-21 00:20:14)

    Hmm, I don't think that could be the cause, I've tried insmod'ing all the necessary deps but to no avail... grub simply doesn't see the ntfs partition...
    Relevant menuentry:
    menuentry 'Windows 7 (loader) (on /dev/sdb2)' --class windows --class os $menuentry_id_option 'osprober-chain-0530C8122E9BEF62' {
    insmod part_msdos
    insmod ntfs
    insmod chain
    insmod ntldr
    set root='hd1,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos3 --hint-efi=hd1,msdos3 --hint-baremetal=ahci1,msdos3 0530C8122E9BEF62
    else
    search --no-floppy --fs-uuid --set=root 0530C8122E9BEF62
    fi
    chainloader +1
    This was generated with os-prober, so I'm assuming it should work out of the box?

  • Gnome 2.28 doesn't mount Windows partitions

    I upgraded Gnome to version 2.28 and got next bug. Menu "Places" doesn't contain Windows partitions. But not all of them. I can see only drive C:, but manual mounting of other drives are passing successfully. There are no records in logs about errors during mounting, from ntfs-3g driver or hal.
    Thank you.

    Here are some steps I've gathered from various threads and wiki pages:
    1)  Gnome 2.28 uses the ntfs driver by default instead of ntfs-3g:
    # ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs
    2)  I login with slim.  To fix consolekit errors, use this (not necessary with GDM) in your .xinitrc:
    exec ck-launch-session gnome-session
    3)  Some external SATA drives are seeing problems since the latest kernel update.  Get the latest version of libatasmart from AUR to fix them:
    EDIT:  the latest libatasmart has been pushed to [extra].
    4)  Configure devicekit for auto-mounting ( 1- Make sure to change USER to your username, 2- Assumes you're using the wheel group for local admin access):
    Create /etc/polkit-1/localauthority.conf.d/61-localauthority.conf
    [Local Admin]
    AdminIdentities=unix-user:root;unix-group:wheel
    Create  /var/lib/polkit-1/localauthority/50-local.d/org.archlinux.freedesktop.devicekit.disks.pkla
    [Local Users]
    Identity=unix-user:USER
    Action=org.freedesktop.devicekit.disks.*
    ResultAny=no
    ResultInactive=no
    ResultActive=yes
    5)  Configure HAL/PolicyKit for ntfs-3g:
    http://wiki.archlinux.org/index.php/HAL … from_Gnome
    After I did all of the above steps, everything works on my system.  I hope it helps.
    Last edited by testube_babies (2009-10-25 12:24:54)

  • Trying to run from logical partition - GRUB doesn't detect it

    Hi all, I only have a single SSD in my laptop with the following setup (in order on disk):
    sda1 - System Reserved
    sda2 - Windows 8
    sda4 - Extended Partition
        sda5 - Arch 2 (this is where I'm trying to move my Arch install to)
    sda3 - Arch (this is the one I can actually boot into
    (unallocated space)
    This is what I want things to look like eventually:
    sda1 - System Reserved
    sda2 - Windows 8
    sda3 - Extended Partition
        sda4 - Arch
        sda5 - some other distro
        sda6 - storage (I want this accessible by all OSes)
    Here's how I think I'm going to do this:
    - move Arch installation from after the extended partition to before it (since the extended partition is a big chunk of mostly free space, and I would like it to go last.
    - after verifying that I can boot the Arch installation from the logical partition, delete the Arch installation on the primary partition and absorb the free space into the extended partition
    Here's what I've done:
    - used 'dd if=/dev/sda3 of=/dev/sda5 bs=4096 conv=notrunc,noerror' to clone my working Arch installation to the logical partition (sda5).
    - ran 'grub-mkconfig -o /boot/grub/grub.cfg' to update GRUB and add the logical partition to the list of things to choose from in the Grub menu.
    After running 'grub-mkconfig' nothing new was added to the menu. 
    Questions:
    - Is what I want to do even possible?
         - can I have the logical partition marked for storage be accessible to Windows 8?
    - Is there an easier way to do what I want to do?
    - How do I get GRUB to detect the logical partition?
         - Is it possible to boot into a logical partition?

    grub doesn't always automatically pick up arch installations. Is os-prober installed? You can always add the entry manually e.g. in 40_custom or whatever. Don't forget to adjust fstab.
    Just to be clear: you have an MBR formatted disk and are talking about traditional logical partitions, right? Not lvm?
    Last edited by cfr (2013-02-02 01:31:48)

  • Problem with Windows installation with bootcamp (won't start up)

    Hi ! I'm trying to install Windows on my Mac mini for the few programs I can't use on mac. When I restart with bootcamp installation assistant, nothing happens. The blue LED is lit, showing that the computer is on, but the screen doesn't recognize any signal and stays black. For info, it's plugged using Apple's mini DVI to VGA adapter. I don't know how to get this installation to work...

    Hi Gn0m:
    I do not use Bootcamp, so I cannot help you myself. However, you might get some feedback by posting in the Bootcamp forum as well as here:
    http://discussions.apple.com/category.jspa?categoryID=237
    Barry

  • I'm running Windows XP Pro - iTunes won't start up unless I reboot my computer. What do I need to fix so it will run without having to reboot (rather than leaving computer in Stand By)?

    .

    Hi LZeitgeist,
    please try the following, which works fine for me:
    Start the taskmanager (Ctrl-Alt-Escape)
    In taskmanager stop the process(tree) for APSDaemon.exe*32
    In (file) explorer go to the folder under C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    Rename (or delete) the files
    APSDaemon.exe
    APSDaemon_main.dll
    Close iTunes. If it doesn't react, kill it from the taskmanager.
    Now iTunes should be working fine (again). If not:
    Start Windows Control Panel, go to the section 'Uninstall a program'
    Select iTunes with the right mouse button and choose 'Repair'
    The above steps will have to be repeated usually after every iTunes update, provided that the new iTunes version starts to hang again...
    Best of luck,
    Michael

  • Xorg won't start after unsuccessfully trying to install bumblebee

    Before i tried to install bumblebee I was just running on the integrated intel graphics chip (intel  HD graphics 3000). During the installation of bumblebee, I first tried with the nouveu driver for the nvidia graphics card, but that resultet in an error when trying to run anything with optirun. Then i tried the proprietary nvidia drivers, but after a reboot the X server would not start.
    I have removed both nvidia drivers, nouveu drivers, bumblebee and set graphics to integrated in the bios again, but the problem persists. Here is my Xorg log file:
    [ 22.722]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 22.722] X Protocol Version 11, Revision 0
    [ 22.722] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 22.722] Current Operating System: Linux eddie 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:45:16 CEST 2013 x86_64
    [ 22.722] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=95ccfb37-7f71-4703-8aa0-e3d7b53aba66 ro quiet
    [ 22.722] Build Date: 01 July 2013 10:48:42AM
    [ 22.722]
    [ 22.722] Current version of pixman: 0.30.2
    [ 22.722] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 22.722] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22.722] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 13 16:28:59 2013
    [ 22.839] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 22.951] (==) No Layout section. Using the first Screen section.
    [ 22.952] (==) No screen section available. Using defaults.
    [ 22.952] (**) |-->Screen "Default Screen Section" (0)
    [ 22.952] (**) | |-->Monitor "<default monitor>"
    [ 22.952] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 22.952] (==) Automatically adding devices
    [ 22.952] (==) Automatically enabling devices
    [ 22.952] (==) Automatically adding GPU devices
    [ 23.083] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 23.083] Entry deleted from font path.
    [ 23.084] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 23.084] Entry deleted from font path.
    [ 23.084] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 23.086] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 23.086] Entry deleted from font path.
    [ 23.086] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 23.086] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 23.086] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 23.086] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 23.099] (II) Loader magic: 0x7fdc20
    [ 23.099] (II) Module ABI versions:
    [ 23.099] X.Org ANSI C Emulation: 0.4
    [ 23.099] X.Org Video Driver: 14.1
    [ 23.099] X.Org XInput driver : 19.1
    [ 23.099] X.Org Server Extension : 7.0
    [ 23.101] (--) PCI:*(0:0:2:0) 8086:0116:1025:0504 rev 9, Mem @ 0xb0000000/4194304, 0xa0000000/268435456, I/O @ 0x00002000/64
    [ 23.122] Initializing built-in extension Generic Event Extension
    [ 23.122] Initializing built-in extension SHAPE
    [ 23.122] Initializing built-in extension MIT-SHM
    [ 23.122] Initializing built-in extension XInputExtension
    [ 23.122] Initializing built-in extension XTEST
    [ 23.123] Initializing built-in extension BIG-REQUESTS
    [ 23.123] Initializing built-in extension SYNC
    [ 23.123] Initializing built-in extension XKEYBOARD
    [ 23.123] Initializing built-in extension XC-MISC
    [ 23.123] Initializing built-in extension SECURITY
    [ 23.123] Initializing built-in extension XINERAMA
    [ 23.123] Initializing built-in extension XFIXES
    [ 23.123] Initializing built-in extension RENDER
    [ 23.123] Initializing built-in extension RANDR
    [ 23.123] Initializing built-in extension COMPOSITE
    [ 23.123] Initializing built-in extension DAMAGE
    [ 23.123] Initializing built-in extension MIT-SCREEN-SAVER
    [ 23.123] Initializing built-in extension DOUBLE-BUFFER
    [ 23.123] Initializing built-in extension RECORD
    [ 23.123] Initializing built-in extension DPMS
    [ 23.123] Initializing built-in extension X-Resource
    [ 23.123] Initializing built-in extension XVideo
    [ 23.123] Initializing built-in extension XVideo-MotionCompensation
    [ 23.123] Initializing built-in extension XFree86-VidModeExtension
    [ 23.123] Initializing built-in extension XFree86-DGA
    [ 23.123] Initializing built-in extension XFree86-DRI
    [ 23.123] Initializing built-in extension DRI2
    [ 23.123] (II) LoadModule: "glx"
    [ 23.206] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 23.376] (II) Module glx: vendor="X.Org Foundation"
    [ 23.376] compiled for 1.14.2, module version = 1.0.0
    [ 23.376] ABI class: X.Org Server Extension, version 7.0
    [ 23.376] (==) AIGLX enabled
    [ 23.376] Loading extension GLX
    [ 23.376] (==) Matched intel as autoconfigured driver 0
    [ 23.376] (==) Matched vesa as autoconfigured driver 1
    [ 23.376] (==) Matched modesetting as autoconfigured driver 2
    [ 23.376] (==) Matched fbdev as autoconfigured driver 3
    [ 23.376] (==) Assigned the driver to the xf86ConfigLayout
    [ 23.376] (II) LoadModule: "intel"
    [ 23.416] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 23.511] (II) Module intel: vendor="X.Org Foundation"
    [ 23.511] compiled for 1.14.2, module version = 2.21.14
    [ 23.511] Module class: X.Org Video Driver
    [ 23.511] ABI class: X.Org Video Driver, version 14.1
    [ 23.512] (II) LoadModule: "vesa"
    [ 23.512] (WW) Warning, couldn't open module vesa
    [ 23.512] (II) UnloadModule: "vesa"
    [ 23.512] (II) Unloading vesa
    [ 23.512] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 23.512] (II) LoadModule: "modesetting"
    [ 23.512] (WW) Warning, couldn't open module modesetting
    [ 23.512] (II) UnloadModule: "modesetting"
    [ 23.512] (II) Unloading modesetting
    [ 23.512] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 23.512] (II) LoadModule: "fbdev"
    [ 23.512] (WW) Warning, couldn't open module fbdev
    [ 23.512] (II) UnloadModule: "fbdev"
    [ 23.512] (II) Unloading fbdev
    [ 23.512] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 23.512] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
    HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
    HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
    HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
    HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
    [ 23.568] (++) using VT number 7
    [ 23.668] (EE) No devices detected.
    [ 23.668] (EE)
    Fatal server error:
    [ 23.668] (EE) no screens found(EE)
    [ 23.668] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 23.668] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 23.668] (EE)
    As you can see it appears that it can't find any screen.
    I would try to reinstall Xorg, but for some reason i can't get internet access from the terminal neither wired nor wireless even though the wicd daemon is running as a systemd service.
    Last edited by avh (2013-08-13 13:31:12)

    swaraj wrote:
    See if this article helps you: https://wiki.archlinux.org/index.php/NV … IA_Optimus
    I had the same problem and it certainly solved all my issues.
    The thing is, it worked fine for me just using the intel driver. Now I have removed both nvidia and noveau drivers again, but it still dosen't work. Also graphics is set to integrated in BIOS.

  • Oracle XE 11g on Windows 7 32bit GUI won't start

    Hi there,
    i have installed Oracle XE 11g on Windows 7 32bit - Services are running - entries in the start menu are present.
    When i try to start the graphical user interface (Browsing: http://127.0.0.1:8080/apex/f?p=4950), it doesn't work. A hint was to install a Microsoft Loopback adapter in the network properties. I did - it didn't help.
    Any suggestions how i might get this running?
    Cheers
    Jan

    Have you change your PC name since the install ?
    if you have the change the lsnr file in network, XE folder.
    Make sure that service Oracle MTS Recovery is not running.
    can you connect to Db in cmd dos window sqlplus?
    also check your hosts file in windows 127.0.0.1 might be resolved somewhere else.

  • [SOLVED] Xorg won't start - Intel Sandy Bridge graphics

    Did a fresh install of Arch on my laptop last night, looking to use the window manager i3 which I have installed but when i run "exec i3" it logs me out, indicating some sort of failure in the session. Tried "startx" and noticed that didn't work either.
    "grep EE /var/log/Xorg.0.log" shows me the following errors in the log:
    (EE) Failed to load module "vesa" (module does not exist, 0)
    (EE) Failed to load module "modesetting" (module does not exist, 0)
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    Extensively read the Intel and Xorg pages on the wiki and googled for an hour or two, tried to create some custom configurations for Xorg but nothing has worked so far.
    It appears to be some issue with the driver in combination with Xorg. I've tried updating, then uninstalling and reinstalling the packages (the three Xorg packages + Intel driver) and specifying what driver and acceleration mode Xorg should use (intel and sna). No luck so far.
    Anyone here who is having the same problem or know the solution?
    Last edited by olger (2013-02-24 19:45:22)

    Gusar wrote:Not really, because if nothing is configured (and the defaults of xterm and twm aren't installed), X will simply quit, and people will ask what's wrong even though things are fine.
    Well maybe I am asking the wrong question then, because I think that might be exactly whats happening. I think maybe my problem is simply related to the window manager, i3.
    Here's a link to my log anyways, if anyone wants to take a look and help me exclude Xorg from the list of potential causes:
    https://gist.github.com/anonymous/f85c2a1f2a0319198a09
    My original problem was that running "exec i3" gives me a blank screen followed by the login screen. I remember running "startx" at another installation I was troubleshooting and getting the very basic Xorg interface, but I dont have xterm or twm installed right now so thats probably why it's just shutting down when I run "startx".

  • Bootcamp partition exists, but won't start

    I needed a Win exclusive program, and when I went to fire Win7 up by pressing  "alt/option" during startup, Bootcamp was missing. When OS X starts, the Partition is on my desktop. I also tried using BootChamp to force into Win7, but when the computer tries to start it, I get a black screen with "No bootable device -- insert boot disk and press any key"
    Bootcamp appears in Disk Utility, and the Startup Disk Pane in System Preferences, but can't get it to load Windows with the same "No bootable device" message.
    Any ideas?

    mixtronic wrote:
    I own and installed the copy of Windows 7 previously, and have booted into Windows many times prior to this problem.
    Well it seems that is not what is happening now. Somehow your Win7 install got corrupted or damaged or removed.
    The only thing you can do is reinstall Win 7.
    Or you could try a Repair install by booting to the Win 7 install DVD and Run Startup Repair (I've heard you have to run it 3 times but not sure as I've never had to do it myself).

  • Xorg won't start as an ordinary user !

    Hi,
    I have tried to start xorg from an ordinary user and it does not work ! I have run an "nvidia-xconfig" and I see the nvidia logo but then it crashes out ! What is surprising is that everything works perfectly as root !
    If anyone has an idea...
    ps : I precise that I added my ordinary user to the video group (usermod -aG video bapman)

    Hi and thank for the answers,
    Unfortunately I tried :
    chmod 1777 /tmp
    but it had no effect !
    I don't see any particular error from Xorg, or at least no more warnings as if I started as root (which works !). Here is my /var/log/Xorg.0.log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.4.0.90
    Release Date: 5 September 2007
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.23-ARCH i686
    Current Operating System: Linux pc-bapman 2.6.23-ARCH #1 SMP PREEMPT Tue Jan 15 06:34:36 UTC 2008 i686
    Build Date: 20 January 2008 08:27:43PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb 7 06:38:55 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Xorg Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "USB Mouse"
    (**) Option "AllowMouseOpenFail" "true"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/PEX" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/western" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/ttf-bitstream-vera" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/CID" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/TrueType" does not exist.
    Entry deleted from font path.
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/cyrillic,
    /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
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x81d65c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2a00 card 1028,0209 rev 0c class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,2a01 card 0000,0000 rev 0c class 06,04,00 hdr 01
    (II) PCI: 00:1a:0: chip 8086,2834 card 1028,0209 rev 02 class 0c,03,00 hdr 80
    (II) PCI: 00:1a:1: chip 8086,2835 card 1028,0209 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1a:7: chip 8086,283a card 1028,0209 rev 02 class 0c,03,20 hdr 00
    (II) PCI: 00:1b:0: chip 8086,284b card 1028,0209 rev 02 class 04,03,00 hdr 00
    (II) PCI: 00:1c:0: chip 8086,283f card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1c:1: chip 8086,2841 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1c:3: chip 8086,2845 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1c:5: chip 8086,2849 card 0000,0000 rev 02 class 06,04,00 hdr 81
    (II) PCI: 00:1d:0: chip 8086,2830 card 1028,0209 rev 02 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,2831 card 1028,0209 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,2832 card 1028,0209 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,2836 card 1028,0209 rev 02 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev f2 class 06,04,01 hdr 01
    (II) PCI: 00:1f:0: chip 8086,2815 card 1028,0209 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,2850 card 1028,0209 rev 02 class 01,01,8a hdr 00
    (II) PCI: 00:1f:2: chip 8086,2829 card 1028,0209 rev 02 class 01,06,01 hdr 00
    (II) PCI: 00:1f:3: chip 8086,283e card 1028,0209 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 01:00:0: chip 10de,0427 card 1028,0209 rev a1 class 03,00,00 hdr 00
    (II) PCI: 03:01:0: chip 1180,0832 card 1028,0209 rev 05 class 0c,00,10 hdr 80
    (II) PCI: 03:01:1: chip 1180,0822 card 1028,0209 rev 22 class 08,05,01 hdr 80
    (II) PCI: 03:01:2: chip 1180,0843 card 1028,0209 rev 12 class 08,80,00 hdr 80
    (II) PCI: 03:01:3: chip 1180,0592 card 1028,0209 rev 12 class 08,80,00 hdr 80
    (II) PCI: 03:01:4: chip 1180,0852 card 1028,0209 rev 12 class 08,80,00 hdr 80
    (II) PCI: 09:00:0: chip 14e4,1713 card 1028,0209 rev 02 class 02,00,00 hdr 00
    (II) PCI: 0c:00:0: chip 8086,4229 card 8086,1121 rev 61 class 02,80,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,13), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x001a (VGA_EN is set)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000e000 - 0x0000efff (0x1000) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfa000000 - 0xfeafffff (0x4b00000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 11: bridge is at (0:28:0), (0,11,11), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 12: bridge is at (0:28:1), (0,12,12), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 12 non-prefetchable memory range:
    [0] -1 0 0xf9f00000 - 0xf9ffffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 13: bridge is at (0:28:3), (0,13,14), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 13 I/O range:
    [0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[b]
    (II) Bus 13 non-prefetchable memory range:
    [0] -1 0 0xf9c00000 - 0xf9efffff (0x300000) MX[b]
    (II) Bus 13 prefetchable memory range:
    [0] -1 0 0xf0000000 - 0xf01fffff (0x200000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 9: bridge is at (0:28:5), (0,9,9), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 9 non-prefetchable memory range:
    [0] -1 0 0xf9b00000 - 0xf9bfffff (0x100000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:30:0), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xf9a00000 - 0xf9afffff (0x100000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:0:0) nVidia Corporation GeForce 8400M GS rev 161, Mem @ 0xfd000000/24, 0xe0000000/28, 0xfa000000/25, I/O @ 0xef00/7
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
    [0] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [1] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [2] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [3] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [4] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [5] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [6] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [7] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [8] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [9] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [10] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [11] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [12] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [14] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [15] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [16] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [17] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [18] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [19] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [20] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [21] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [22] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [23] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [24] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [26] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [27] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [28] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [29] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [30] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [31] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [1] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [2] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [3] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [4] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [5] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [6] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [7] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [8] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [9] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [10] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [11] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [12] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [14] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [15] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [16] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [17] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [18] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [19] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [20] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [21] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [22] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [23] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [24] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [26] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [27] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [28] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [29] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [30] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [31] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [5] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [6] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [7] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [8] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [9] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [10] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [11] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [12] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [13] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [14] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [15] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [16] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [17] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [18] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [22] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [23] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [24] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [25] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [26] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [27] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [28] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [29] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [30] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [32] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [33] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [34] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [35] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [36] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [37] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" 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 by default.
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) NVIDIA GLX Module 100.14.19 Wed Sep 12 14:48:02 PDT 2007
    (II) Loading extension GLX
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.0.90, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) NVIDIA dlloader X Driver 100.14.19 Wed Sep 12 14:14:20 PDT 2007
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01:00:0
    (--) Assigning device section with no busID to primary device
    (--) Chipset NVIDIA GPU found
    (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.4.0.90, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="NVIDIA Corporation"
    compiled for 7.1.99.2, module version = 1.0.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [5] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [6] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [7] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [8] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [9] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [10] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [11] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [12] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [13] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [14] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [15] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [16] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [17] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [18] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [22] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [23] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [24] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [25] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [26] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [27] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [28] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [29] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [30] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [32] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [33] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [34] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [35] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [36] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [37] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [5] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [6] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [7] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [8] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [9] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [10] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [11] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [12] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [13] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [14] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [15] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [16] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [17] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [18] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [24] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [25] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [26] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [27] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [28] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [29] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [30] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [31] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [32] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [33] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [34] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [35] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [36] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [37] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [38] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [39] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [40] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    [41] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [42] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16
    (==) NVIDIA(0): RGB weight 565
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) 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 8400M GS (G86) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 262144 kBytes
    (--) NVIDIA(0): VideoBIOS: 60.86.45.00.40
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8400M GS at PCI:1:0:0:
    (--) NVIDIA(0): LCD (DFP-0)
    (--) NVIDIA(0): LCD (DFP-0): 330.0 MHz maximum pixel clock
    (--) NVIDIA(0): LCD (DFP-0): Internal Dual Link LVDS
    (II) NVIDIA(0): Assigned Display Device: DFP-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): "800x600"
    (II) NVIDIA(0): "640x480"
    (II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
    (--) NVIDIA(0): DPI set to (89, 108); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (==) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b]
    [1] 0 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    [2] 0 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b]
    [3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [7] -1 0 0xf9ffe000 - 0xf9ffffff (0x2000) MX[b]
    [8] -1 0 0xf9bf0000 - 0xf9bfffff (0x10000) MX[b]
    [9] -1 0 0xf9aff700 - 0xf9aff7ff (0x100) MX[b]
    [10] -1 0 0xf9aff600 - 0xf9aff6ff (0x100) MX[b]
    [11] -1 0 0xf9aff500 - 0xf9aff5ff (0x100) MX[b]
    [12] -1 0 0xf9aff400 - 0xf9aff4ff (0x100) MX[b]
    [13] -1 0 0xf9aff800 - 0xf9afffff (0x800) MX[b]
    [14] -1 0 0xfebfb700 - 0xfebfb7ff (0x100) MX[b]
    [15] -1 0 0xfebfb800 - 0xfebfbfff (0x800) MX[b]
    [16] -1 0 0xfed1c000 - 0xfed1c3ff (0x400) MX[b]
    [17] -1 0 0xfebfc000 - 0xfebfffff (0x4000) MX[b]
    [18] -1 0 0xfed1c400 - 0xfed1c7ff (0x400) MX[b]
    [19] -1 0 0xfa000000 - 0xfbffffff (0x2000000) MX[b](B)
    [20] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [21] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[b](B)
    [22] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [23] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [24] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [25] 0 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b]
    [26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [27] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [28] -1 0 0x000010c0 - 0x000010df (0x20) IX[b]
    [29] -1 0 0x00006ee0 - 0x00006eff (0x20) IX[b]
    [30] -1 0 0x00006ec8 - 0x00006ecb (0x4) IX[b]
    [31] -1 0 0x00006ec0 - 0x00006ec7 (0x8) IX[b]
    [32] -1 0 0x00006eb8 - 0x00006ebb (0x4) IX[b]
    [33] -1 0 0x00006eb0 - 0x00006eb7 (0x8) IX[b]
    [34] -1 0 0x00006fa0 - 0x00006faf (0x10) IX[b]
    [35] -1 0 0x00000374 - 0x00000374 (0x1) IX[b]
    [36] -1 0 0x00000170 - 0x00000177 (0x8) IX[b]
    [37] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[b]
    [38] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [39] -1 0 0x00006f40 - 0x00006f5f (0x20) IX[b]
    [40] -1 0 0x00006f60 - 0x00006f7f (0x20) IX[b]
    [41] -1 0 0x00006f80 - 0x00006f9f (0x20) IX[b]
    [42] -1 0 0x00006f00 - 0x00006f1f (0x20) IX[b]
    [43] -1 0 0x00006f20 - 0x00006f3f (0x20) IX[b]
    [44] -1 0 0x0000ef00 - 0x0000ef7f (0x80) IX[b](B)
    [45] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [46] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Initialized GART.
    (II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    (II) NVIDIA(0): enough to receive ACPI display change hotkey events.
    (II) NVIDIA(0): Setting mode "1024x768"
    (--) NVIDIA(0): No video decoder detected
    (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
    (**) Option "dpms" "true"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (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 built-in extension XEVIE
    (II) Initializing extension GLX
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "fr-latin9"
    (**) Keyboard0: XkbLayout: "fr-latin9"
    (WW) Option "XkbVariant" requires an string value
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (**) Option "Protocol" "IMPS/2"
    (**) USB Mouse: Device: "/dev/input/mice"
    (**) USB Mouse: Protocol: "IMPS/2"
    (**) Option "SendCoreEvents" "true"
    (**) Option "CorePointer"
    (**) USB Mouse: always reports core events
    (**) Option "Device" "/dev/input/mice"
    (**) Option "Buttons" "5"
    (==) USB Mouse: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5"
    (**) USB Mouse: ZAxisMapping: buttons 4 and 5
    (**) USB Mouse: Buttons: 9
    (**) USB Mouse: Sensitivity: 1
    (II) evaluating device (USB Mouse)
    (II) XINPUT: Adding extended input device "USB Mouse" (type: MOUSE)
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) USB Mouse: ps2EnableDataReporting: succeeded
    FreeFontPath: FPE "/usr/share/fonts/misc:unscaled" refcount is 2, should be 1; fixing.

  • Xorg won't start, synaptics and such are involved

    Hi guys
    After todays update and a reboot, I was screwed. Init step 5 is the last sign of life after the boot process, because than there are no ttys and on tt7 is just a rainbow of colors and nothing works. chrooting in the system of an Arch Live CD helped me starting the DE, but without startx nor xinit. slim the login manager is the one who helped me to enter again in the world of Xorg, but why is that so and how can I fix the issue mentioned above?!
    Both, xorg as slim are highlighting this in their logs:
    Current version of pixman: 0.18.4
    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: Sun Oct 24 17:31:14 2010
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    (EE) SynPS/2 Synaptics TouchPad no synaptics event device found
    (EE) Query no Synaptics: 6003C8
    (EE) SynPS/2 Synaptics TouchPad Unable to query/initialize Synaptics hardware.
    (EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"
    Only difference is, that xorg is unable to provide a X and slim seems to not carrying at all about the errors and starts it, but a first restriction that I noticed is that there is no xterm that is able to start. Some sort of log entry:
    xterm Error 32, errno 2: No such file or directory
    get_pty: not enough ptys
    xf86-input-synaptics ; xf86-input-evdev ; xf86-input-mouse ; xf86-input-keyboard have all been installed successfully. Before the update everything was working fine, I mean with input devices like TrackPoint (Vertcial & Horizontal), thanks to the 20-thinkpad.conf in xorg.conf.d
    Thanks for the upcoming help.

    If you use a custom kernel, you'll need to compile your own nvidia modules: http://www.archlinux.org/news.php#238

  • Xorg won't start - gives Connection Refused error

    I'm trying to use Xorg, I have it configured with Xorg -configure and all that, but when dtlogin tries to start it reports these errors in it's logfile:
    XIO: fatal IO errors 146 (Connection Refused) on X server ":0.0"^M
    (the ^M is part of the message as well)
    Any ideas?

    Hi Reasons,
    Your problem seems to appear atfer loading the libglx module:
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    Maybe you're having this issue described in nouveau's wiki: http://nouveau.freedesktop.org/wiki/InstallNouveau
    9. Now start Xorg and run for cover. If you used the the nvidia blob before, the X server may possibly not start because NVIDIA overwrites the libglx.so which the X server provides with it's proprietary libglx.so. If that happens, install the X server package from your distribution again to resetore the original libglx.so and make a backup copy of it in case you install the blob again.

  • Xorg won't start after upgrading nvidia-utils

    Today I did a pacman -Syu , it wanted to upgrade nvidia-utils, I said yes and it told me it would remove nvidia package as it conflict with, so I let it remove nvidia pakage.
    Then Xorg didn't wanted to start. I reinstalled nvidia and received the following error:
    Error: API mismatch: The NVIDIA kernel module has the version 1.0-8178, but this X module has the version 1.0-8762
    Please make sure kernel module and all Nvidia components have the same version
    Then I removed nvidia and nvidia-utils and reinstalled them, now I receive the following error when trying to start Xorg:
    Fatal: could not open '/lib/modules/2.6.16.18-ARCH/kernel/drivers/video/nvidia.ko
    Failed to load nvidia kernel module!
    How do I fix this? I'm using my own compiled kernel version (2.6.16.18) and Xorg worked find before doing  pacman -Syu and updating nvidia-utils.

    If you use a custom kernel, you'll need to compile your own nvidia modules: http://www.archlinux.org/news.php#238

  • Windows 7 print spooler won't start

    I upgraded my Dell Inspiron 545 from Vista to Windows 7 Home Premium a week ago and have only been able to print one document since then.
    Under Vista my Canon MP610 and Lexmark 705 printers both worked, but no luck with Windows 7.
    I keep getting the message Print Spooler isn't started.
    I've tried starting it from the services dialog box and it just won't go. I've run an SCN scan and no problems were found.
    My printers do work because our MacBook in the kitchen can get them to print from our wireless network.
    Help!

    Hello,
    This problem is caused by the corrupted Printer Spooler service. Try the following steps to repair it:
    Step 1
    ======
    Start Windows Explorer, and then rename all files and folders in the following two folders:
    c:\windows\system32\spool\printers
    c:\windows\system32\spool\drivers\w32x86
    To rename a file, we can right click the file and select Rename.
    Step 2
    ======
    1. Click Start, type REGEDIT in the Start Search Bar, and then press ENTER.
    2. Navigate to and then click the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environment\Windows NT x86
    View the list of subkeys. There should be only the following subkeys:
    Drivers
    Print Processors
    If there are any keys other than those listed above, follow these steps:
    a. On the File menu, click Export.
    b. In the File Name box, type a descriptive name for this key -- for example, type WindowsNTx86regkey -- and then click Save to save it to your local Desktop.
    We can use this backup of the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environment\Windows NT x86 registry key to restore the key if you experience any problems after you complete this procedure.
    c. Delete all keys other than Drivers and Print Processors.
    Step 3
    ======
    Navigate to and click the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors registry key. View the list of subkeys. There should be only the following subkeys:
    BJ Language Monitor
    Local Port
    Microsoft Document Imaging Writer Monitor
    Microsoft Shared Fax Monitor
    Standard TCP/IP Port
    USB Monitor
    WSD Port
    If there are any keys other than those listed in above, follow these steps to delete them:
    a. On the File menu, click Export.
    b. In the File Name box, type a descriptive name for this key -- for example, type Monitorsregkey -- and then click Save to save it to your local Desktop.
    We can use this backup of the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors registry key to restore the key if you experience any problems after you complete this procedure.
    c. Delete all keys other than the 5 listed above.
    Thomas77

Maybe you are looking for