[SOLVED]Installing X

After trying to install X with the command:
# pacman -S xorg-server xorg-xinit xorg-server-utils
I get the error message:
error: xorg-xset: signature from "jan de groot <[email protected]>" is invalid
error: failed to commit transaction (invalid or currupted package)
Errors occured, no packages were upgraded.
Help?
Last edited by Cube_Code (2012-07-20 05:25:50)

http://www.archlinux.org/news/having-pa … -packages/
More info in the wiki

Similar Messages

  • [SOLVED] Installing VLC from Extras doesn't work.

    Hey guys,
    During installation I enabled the pacman repository mirror for my country. Which is hosted by Kangaroot.net
    Just now I tried to install VLC media player. Oddly enough pacman couldn't find a couple of dependency packages on the Kangaroot mirror.
    To fix this I went into /etc/pacman.d/mirrorlist and enabled all the mirrors from Germany. I figured that would fix it.
    Seems that the German mirrors are missing the same packages though. This is pacman's output:
    error: failed retrieving file 'libdvbpsi-0.2.1-1-i686.pkg.tar.xz' from mir.archlinux.fr : Not Found
    error: failed retrieving file 'ffmpeg-20111108-1-i686.pkg.tar.xz' from archlinux.polymorf.fr : Not Found
    error: failed retrieving file 'libupnp-1.6.13-1-i686.pkg.tar.xz' from archlinux.polymorf.fr : Not Found
    error: failed retrieving file 'vlc-1.1.12-3-i686.pkg.tar.xz' from mir.archlinux.fr : Not Found
    When you look up "Archlinux" on the videolan.org website it claims VLC ought to be available in the Extras repository.
    What am I missing?
    Last edited by 20k (2011-11-26 21:26:44)

    Am I right in understanding that because pacman's database was not properly updated it couldn't find the same packages on other mirrors either?
    Yes. Your database was out of date, therefore pacman was looking for things which would no longer exist on any up to date mirror.
    EDIT: If your problem is solved, please edit your thread title to reflect this
    Last edited by b4data (2011-11-23 18:09:41)

  • [SOLVED]Installing Catalyst

    Hello,
    When I try to install catalyst-utils from the AUR, after I get to choose if I want to remove libgl I get the following errors:
    error: failed to prepare transaction (could not satisfy dependencies)
    :: ati-dri: requires libgl=7.11
    :: intel-dri: requires libgl=7.11
    :: mach64-dri: requires libgl=7.11
    :: mga-dri: requires libgl=7.11
    :: r128-dri: requires libgl=7.11
    :: savage-dri: requires libgl=7.11
    :: sis-dri: requires libgl=7.11
    :: tdfx-dri: requires libgl=7.11
    The same thing happens when I try to install Catalyst from the unoffical repos.
    Could anyone please help me solve this?
    Thanks in advance.
    Last edited by Raippi (2011-08-16 11:13:32)

    Raippi wrote:
    I have solved the problem
    Please close the thread.
    Please edit your first post and add '[solved]' to the thread's title.

  • [solved] Installing pygame

    Hi,
    Im having a problem while installing pygame from the repositories.
    It seems that sdl_ttf-2.0.9-2-i686.pkg.tar.gz cannot be found in several mirrors.
    However, I downloaded the tar file and did ./configure and make, but
    now I dont know where to put the directory to continue with the installation of
    the pygame library.
    Could someone help me with this?
    Last edited by FerBenzaa (2010-08-09 17:29:40)

    FerBenzaa wrote:
    cool, found it.
    I dont know why I read LOCALE instead of LOCATE.
    Now it is corrected and running
    Thanks for the help
    You're welcome.
    A couple of friendly reminders:
    - keep your system updated
    - you can grab a package by hand if the mirrors are acting up, no need to compile
    - we have a list of good (up to date) mirrors https://www.archlinux.de/?page=MirrorStatus
    Please mark the thread as solved.

  • [SOLVED]Install Scribes after Archlinux's python3 update from october

    I would like to install scribes with the latest updates, but since Archlinux switched to Python3 by default (in october), I am unable to do so.
    Before the update, i ran without problem:
    bzr branch lp:scribes
    cd scribes
    sh autogen.sh
    make
    sudo make install
    But now I can't pass autogen.sh :
    checking what language compliance flags to pass to the C++ compiler...
    checking for a Python interpreter with version >= 2.5... python
    checking for python... /usr/bin/python
    checking for python version... 3.1
    checking for python platform... linux2
    checking for python script directory... ${prefix}/lib/python3.1/site-packages
    checking for python extension module directory... ${exec_prefix}/lib/python3.1/site-packages
    configure: error: Error: Dependency check failed
    In conf.log there is:
    configure:6227: ./conftest
    File "depcheck.py", line 10
    print "Checking for D-Bus (Python Bindings)... yes"
    ^
    SyntaxError: invalid syntax
    So I run 2to3 on the depcheck.py file in the folder:
    2to3 -w depcheck.py
    And I get:
    checking for a Python interpreter with version >= 2.5... python
    checking for python... /usr/bin/python
    checking for python version... 3.1
    checking for python platform... linux2
    checking for python script directory... ${prefix}/lib/python3.1/site-packages
    checking for python extension module directory... ${exec_prefix}/lib/python3.1/site-packages
    Error: Python bindings for D-Bus was not found.
    configure: error: Error: Dependency check failed
    In depcheck.py, the error is launched when:
    # Check for D-Bus Python Bindings.
    try:
    import dbus
    if dbus.version < (0, 70, 0): raise AssertionError
    print("Checking for D-Bus (Python Bindings)... yes")
    except ImportError:
    print("Error: Python bindings for D-Bus was not found.")
    raise SystemExit
    except AssertionError:
    print("Error: Version 0.70 or better of dbus-python needed.")
    raise SystemExit
    It turns out I can't access dbus module from python3:
    $ python
    Python 3.1.3 (r313:86834, Dec 1 2010, 12:35:23)
    [GCC 4.5.1 20101125 (prerelease)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import dbus
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ImportError: No module named dbus
    >>>
    $ python2
    Python 2.7.1 (r271:86832, Dec 2 2010, 03:10:07)
    [GCC 4.5.1 20101125 (prerelease)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import dbus
    >>>
    But anyway, scribes is written with python2 syntax in mind, so let's use it :
    $ export PYTHONPATH=/usr/lib/python2.7
    I now re-run ./autogen.sh :
    checking what language compliance flags to pass to the C++ compiler...
    checking for a Python interpreter with version >= 2.5... ./configure: line 6015: 17533 Aborted ( $am_cv_pathless_PYTHON -c "$prog" ) 1>&5 2>&5
    python2
    checking for python2... /usr/bin/python2
    checking for python2 version... 2.7
    checking for python2 platform... linux2
    checking for python2 script directory... ${prefix}/lib/python2.7/site-packages
    checking for python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
    configure: error: Error: Dependency check failed
    In conf.log, there is now:
    configure:6191: result: ${exec_prefix}/lib/python2.7/site-packages
    configure:6227: gcc -o conftest -g -O2 conftest.c >&5
    configure:6227: $? = 0
    configure:6227: ./conftest
    Fatal Python error: Py_Initialize: can't initialize sys standard streams
    Traceback (most recent call last):
    File "/usr/lib/python2.7/encodings/utf_8.py", line 9, in <module>
    configure:6227: $? = 1
    configure: program exited with status 1
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "scribes"
    But with the PYTHONPATH set, I can't even start the python interpreter (python2 still works fine):
    $ python
    Fatal Python error: Py_Initialize: can't initialize sys standard streams
    Traceback (most recent call last):
    File "/usr/lib/python2.7/encodings/utf_8.py", line 9, in <module>
    Aborted
    I can still start scribes without compiling it, but then on the console, the same error appears:
    $ python2 scribes.in
    Fatal Python error: Py_Initialize: can't initialize sys standard streams
    Traceback (most recent call last):
    File "/usr/lib/python2.7/encodings/utf_8.py", line 9, in <module>
    Fatal Python error: Py_Initialize: can't initialize sys standard streams
    Traceback (most recent call last):
    File "/usr/lib/python2.7/encodings/utf_8.py", line 9, in <module>
    Without PYTHONPATH set, I can also run scribes (with python2), but it gives me an error in the console. I also tried o run 2to3 on every python file in the project and correcting the syntax to be conform to http://diveintopython3.org/porting-code … -2to3.html (but that's not really what I'm supposed to do, is it?), and I got the same error as the one below ("No module named gobject") when trying to build with autogen.sh:
    $ export PYTHONPATH=
    $ python2 scribes.in
    Traceback (most recent call last):
    File "/home/wan/scribes_d/scribes_721/SCRIBES/SaveSystem/ExternalProcess/ScribesSaveProcess.py", line 7, in <module>
    from gobject import MainLoop, threads_init
    ImportError: No module named gobject
    I am out of ideas to try to correct the problem. Can anyone help me please?
    Last edited by wan (2010-12-09 01:26:14)

    I knew there was an old (and not up-to-date) package in community, but I didn't know that I could get the PKGBUILD.
    That teached me the -G argument for yaourt!
    To solve the problem, the previous script helped a lot:
    $ sed -i 's/python depcheck.py/python2 depcheck.py/' configure.ac
    ... on some other files as well.
    I submitted the now up-to-date PKGBUILD to the AUR here: http://aur.archlinux.org/packages.php?ID=44275
    Thanks for your suggestions!

  • [SOLVED] install package from aur via yaourt

    Hi,
    i installed yaourt and tried to install from the aur.
    it keeps asking me to continue bulding and then restart building. it just wont install any packages.
    for none-aur packages it works fine btw.
    any help?
    alex
    Last edited by alext (2011-10-11 23:13:53)

    me too and it didnt.
    [xxx@xxx pcmanfm-mod]$ yaourt ntfs-config
    1 aur/ntfs-config 1.0.1-7 (200)
    Enable/disable NTFS write support with a simple click
    ==> Enter n° of packages to be installed (ex: 1 2 3 or 1-3)
    ==> -------------------------------------------------------
    ==> 1
    ==> Downloading ntfs-config PKGBUILD from AUR...
    x PKGBUILD
    x python-2.7.patch
    Comment by: loleg on Sat, 25 Jun 2011 10:07:14 +0000
    Compiles installs OK using yaourt, however does not work on my up-to-date system with the issue discussed here: http://ubuntuforums.org/archive/index.php/t-1497399.html
    Comment by: jlcordeiro on Mon, 27 Jun 2011 08:56:12 +0000
    Can you check if:
    sudo mkdir /etc/hal/fdi
    sudo touch /etc/hal/fdi/policy
    solves the problem?
    Comment by: mr430 on Tue, 04 Oct 2011 15:56:44 +0000
    jlcordeiro, same problem and making /etc/hal/fdi directory solve it, thanks
    Comment by: jlcordeiro on Sat, 08 Oct 2011 08:17:08 +0000
    Updated with the solution to the mentioned problem.
    Comment by: archdria on Tue, 11 Oct 2011 12:04:43 +0000
    Please, add perl-xml-parser as makedep :)
    Comment by: jlcordeiro on Tue, 11 Oct 2011 21:36:05 +0000
    Done. Thank you :)
    First Submitted: Fri, 19 Jan 2007 21:10:44 +0000
    ntfs-config 1.0.1-7
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> ntfs-config dependencies:
    - python2 (already installed)
    - pygtk (already installed)
    - udev (already installed)
    - ntfs-3g (already installed)
    - perl-xml-parser (already installed)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'testing' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'core' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'extra' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'community-testing' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'community' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'multilib' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    ==> Continue building ntfs-config ? [Y/n]
    ==> -------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for ntfs-config:
    Password:
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'testing' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'core' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'extra' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'community-testing' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'community' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'multilib' not recognized.
    error: target not found: recognized.
    ==> Restart building ntfs-config ? [y/N]
    ==> ------------------------------------
    ==>
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> ntfs-config dependencies:
    - python2 (already installed)
    - pygtk (already installed)
    - udev (already installed)
    - ntfs-3g (already installed)
    - perl-xml-parser (already installed)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'testing' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'core' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'extra' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'community-testing' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'community' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    - warning: (building from AUR)
    - config (building from AUR)
    - file (package found)
    - /etc/pacman.d/mirrorlist, (building from AUR)
    - line (building from AUR)
    - 82: (building from AUR)
    - directive (building from AUR)
    - 'Germany' (building from AUR)
    - in (building from AUR)
    - section (building from AUR)
    - 'multilib' (building from AUR)
    - not (building from AUR)
    - recognized. (building from AUR)
    ==> Continue building ntfs-config ? [Y/n]
    ==> -------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for ntfs-config:
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'testing' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'core' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'extra' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'community-testing' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'community' not recognized.
    warning: config file /etc/pacman.d/mirrorlist, line 82: directive 'Germany' in section 'multilib' not recognized.
    error: target not found: recognized.
    ==> Restart building ntfs-config ? [y/N]
    ==> ------------------------------------
    ==>
    ==> WARNING: Following packages have not been installed:
    ntfs-config
    Edit: now ive just seen that i forgot about the warnings. i am not sure about what they mean and how to fix it.
    Last edited by alext (2011-10-11 22:16:58)

  • [Solved] Install package python-evdev from AUR

    I belive this is the correct section to post this but I have a problem installing the package python-evdev where I get the error ( Unsupported package: Potentially dangerous ! )
    after trying to install with yaourt and pip install python-evdev results in bash: pip: command not found even after checking that extra/python-setuptools 1:5.2-1 is installed
    and extra/python2-setuptools 1:5.2-1 is installed.
    I realize there are other modules for hooking x server events but this one I have already written 200 lines of code for and is key to my application working.  I was able to install
    and utilize this module in ubuntu but cannot seem to get it installed in archlinux.  Any guidance would be apreciated.
    Last edited by meschael (2014-06-25 00:34:58)

    I asumed pip came with setup tools, so following ids1024's lead I did a pacman -S python-pip which solved the command not found issue.  I downloaded and untar'ed the package from AUR and issued a makepkg -s from within the extracted folder.  There seems to be an issue with the licence which I can now see has to do with the person who make the package
    I did not realize the dynamics of how AUR works because I am new to arch, so I appologize if I bothered anyone.
    [Update] I have abondoned the idea of getting pythons evdev module installed as I have located a python3-xlib module which seems to have installed correctly, incidently I was unable to locate a xlib ported to python3 in my other distro, but found it in AUR here so this should work, will have to adapt my code but not the end of the world.  Else if (Xlib != WORKING): work directly with /dev/input/eventn using root
    Last edited by meschael (2014-06-25 00:34:03)

  • [SOLVED] Installed Win 7, now Arch won't boot

    Edit: To save anyone reading this all the way, the problem turned out to be a badly edited fstab. Sigh.
    PROBLEM:
    Grub loads, then loads the kernel, but the boot hangs a few seconds later with no real error messages.
    BACKGROUND:
    1) I needed to boot a native Windows 7 partition on my 128GB laptop SSD.
    2) So, I used gparted in an Ubuntu Live USB to resize my existing Arch partition and create an NTFS partition for Win 7:
    sda > sda1=Arch > sda2=ntfs > sda3=linux swap
    Arch still booted fine after this (sda1).
    3) I then installed windows 7 (BIOS install) onto the second partition (sda2). I don't know where or if it puts some system reserved partition - but I can't see anything in gparted.
    4) chrooted from an Arch Live USB, reinstalled GRUB, including mkconfig step
    5) *If* I recall, Arch then booted OK.
    6)  Booted into Windows and applied all updates, set windows to use UTC clock and updated my laptops BIOS. Reboot.
    7) Win 7 boots fine from the grub menu from (hd0,2)
    8) Arch starts booting, loads the kernel, then hangs after the kernel has loaded, but before gdm appears. With the following on screen:
    [2.104597] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    I have tried chrooting and reinstalling linux and linux-headers and grub. But so far to no avail.
    [SOLVED with face palm]
    I installed syslinux using chroot, as it displays more startup messages. The boot was hanging at [a disk task is starting] or words to that effect. It was my USB stick, which I'd foolishly added to fstab with the "auto" option. Editing that out of fstab - and it's all good.
    I'll leave this here in case anyone else does something this dumb.
    Last edited by sultanoswing (2013-10-30 08:09:03)

    fettouhi wrote:
    Thanks for the clarification about the DAEMONS list. My DAEMONS list is:
    DAEMONS=(!hwclock ntpd syslog-ng !network netfs crond @alsa dbus networkmanager ufw cupsd avahi-daemon samba)
    when I try to enable alsa and dbus I get this
    [root@andre ~]# systemctl enable alsa-store.service
    The unit files have no [Install] section. They are not meant to be enabled using systemctl.
    [root@andre ~]# systemctl enable alsa-restore.service
    The unit files have no [Install] section. They are not meant to be enabled using systemctl.
    [root@andre ~]# systemctl enable dbus.service
    The unit files have no [Install] section. They are not meant to be enabled using systemctl.
    Is LVM handled automatically by systemd? The reason I ask is because I have the USELVM= set to YES in rc.conf.
    I made the permanent transition to systemd and did not start alsa at all - sound works fine - so I never bothered with the alsa-store/alsa-restore service files at all - it just works! Also dbus gets handled by default in systemd so you don't need any starting of dbus service at all... it just works.

  • [SOLVED] install arch VM with pacstrap

    Dear all,
    I am installing a Arch VM on my Arch host. The host is up-to-date, well configured (at least I think) in a vanilla manner (no suspicious hacks).
    # pacstrap -i -c -d /dahlia base base-devel
    is installing all packages but gives me this error many times:
    /usr/bin/bash: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory
    error: command failed to execute correctly
    Googling this error returns lot of topics but I couldn't find a clear answer. I do not want to start with a semi-broken arch VM, so I want to solve this issue before going further.
    Thank you
    Last edited by gabx (2014-02-10 13:22:42)

    # pacstrap -i -c -d /dahlia base base-devel readline lib32-ncurses ncurses acl attr gettext
    did the trick

  • [SOLVED] install xorg on Virtualbox's ArchLinux

    I'm trying to install xorg on the ArchLinux.(which in a virtualbox's box)
    But, when I run 'xinit'.
    It display vboxvideo does not exist.
    When I use 'lsmod|grep vboxvideo'.  It exist.
    After search full directory, I found:
    /usr/lib/xorg/modules/dri/vboxvideo_dri.so
    and
    /lib/modules/3.0-ARCH/misc/vboxvideo.so
    [SOLVED solution]
    mkdir -p /usr/lib/xorg/modules/drivers
    rerun the virtualbox addition
    Last edited by dlin (2011-08-13 01:04:50)

    You need a VirtualBox Guest installation for your guest system to  get the needed video driver run at your guest system.
    Look at this how to do the installation on an Arch system:
    https://wiki.archlinux.org/index.php/Ar … lBox_Guest
    Alternatively, you can install the drivers with VirtualBox itself. There is a Menu entry 'Install Guest Additions...' under 'Devices'.
    After calling the menu item there is a iso image installed wich you can mount in your guest system:
    # mount /dev/sr0 /mnt
    or something similar
    On the CD there is a bash script /mnt/VboxLinuxAdditions.run which you can run to compile the device drivers.
    To do this, you need gcc and linux headers installed on your guest system.
    For using the compiled drivers, use the wiki article which I have linked above.
    This Way has the disadvantage that you need to do the compilation again after every kernel update.

  • [SOLVED] Installing modemmanager + accessing aur + misc issues

    Hi All:
    I am new to Arch. It was a very learning and trying experience getting Arch up and running with Gnome 3, and wireless connectivity etc., but it was a lot of fun and the system is very fun to use.. Now, I have Network Manager installed so that I can also connect to the internet using a datacard (USB modem) as well as wireless internet when in office.
    After struggling to get the modem out of the CD mode, installing modemmanager, and usb_modeswitch, things were working ok, sort of. Network Manager detected my datacard and showed it in available connections in the applet (in the clutter notification).. When I clicked on it to try and connect, nothing happens. I then open Network Settings, and go to Mobile Broadband tab, and click on "Options" but nothing shows up. I thought maybe, modemmanager didn't install properly so I try uninstalling it, and re-installing and try again. I guess I did this a couple of times without thinking.. Somewhere in the middle of it all, modemmanager got messed up, and when I did "clyde -Qi modemmanager", it showed like (typing this from memory):
    extra/modemmanager <version-number>
    Null
    So, I uninstalled it ("clyde -R modemmanager"), and tried reinstalling it (clyde -S --repos modemmanager), but it won't install. It keeps saying that there are many files are that already existing so installation is aborted. I am not sure if I can delete those files (some are in the d-bus folder etc).. Without modemmanager, my USB modem won't show up on the network manager applet anymore.
    I wanted to post the contents of that error message here, using pastebin, but that brings me to the next problem:
    Some websites are not accessible from my Arch installation. The websites I know aren't working are:
    1. Aur website (doesn't load),
    2. Arch forums (loads but won't let me post),
    3. pastebin.com (loads but won't let me post),
    4. Youtube (loads site but video won't load).
    These sites work fine from my windows installation. Also, sending email via IMAP on thunderbird is very whimsical. I think if the message is bigger than a particular size, it gets stuck halfway.. Searching for the youtube issue, I found someone saying that setting MTU on the network manager will solve it. So, I set MTU to 1436 bytes. (or something close) That solved the youtube problem, but the remaining problems still persist.
    Sorry I am not able to give all the error messages here yet, because of the website accessing problem in my Arch installation. I am posting this from windows. Another problem I was having was not being able to write to my NTFS partition from Arch (even with root privileges) but I will leave that to another time/thread, because I still think there are things I can try to get that working..
    I will try and use a wired connection to see if that solves the problems. Meanwhile, any suggestions on how I can cleanup the modemmanager files so I can re-install it would be very helpful.
    Thanks,
    Maha
    Last edited by magesha (2011-07-20 11:54:59)

    Ok, fixed it thanks to some very helpful people in the IRC channel. Many thanks.
    I think my main mistakes was using clyde for installing from the repo, and not letting clyde finish properly once.. Removed the files after checking with pacman -Qo that they don't belong to any package. Then reinstalled modemmanager from the repo. Used nm-connections-editor to add the modem settings, and all set now!
    As for the website/posting problem, somehow it seems to have vanished. Either my router has some intermittent issues or MTU = 1426 bytes is somehow sacred.. Anyways, marking this post as [SOLVED].
    -Magesha

  • [Solved] Installed Arch, I have a kernel problem.

    Hi guys, I'm new here, but I use only linux since 2003. I have a problem at boot... When I choose arch from the bootloader I get this:
    ERROR: Failed to parse block device name for '/dev/sda6'
    ERROR: root fs cannot be detected. Try using the rootfstype= kernel parameter
    Or something very very similar. I see that I'm not the only one experiencing this problem so I try solving by myself following hints I've found on this forum... but nothing changed.
    I need help
    This is what you have to know:
    /etc/mkinitcpio.conf:
    MODULES=""
    HOOKS="base udev autodetect pata keymap filesystems"
    I also tried with ide...
    fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
    /dev/cdrom1 /mnt/cdrom1 iso9660 ro,user,noauto,unhide 0 0
    /dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
    /dev/fd0 /mnt/fd0 vfat user,noauto 0 0
    /dev/sda2 swap swap defaults 0 0
    /dev/sda6 / ext3 defaults 0 1
    grub entry:
    #Archlinux
    title ArchLinux (on /dev/sda6)
    root (hd0,5)
    kernel /boot/vmlinuz26 root=/dev/sda6
    initrd /boot/kernel26.img
    savedefault
    boot
    Last edited by Raffo (2007-07-14 16:34:42)

    That's very curious. I'm just having this problem after installing the lowlatency kernel from this repo:
    Server = http://arch.madfire.net/proaudio/i686
    So I've just changed the initrd /boot/kernel26.img to /boot/kernel26rt.img and I'm getting exactly the same error. I've also tried changing sda with hda in the grub's menu.lst but nothing changed...

  • [SOLVED] installing qt 5

    hello i have installed archlinux today
    and i installed qt from pacman
    but when i compile my project
    qtcreator doesnt find <QtWidgets> , <QJsonDocument> , qt5 headers etc
    i  have installed qt5-base from pacman.
    i have previously used ubuntu and installed qt5 from ppa  and my project compiled fine in ubuntu
    so  how i can i fix this issue?
    edit
    ok delete this thread i changed qmake version in preferences dailog and it compiled
    Last edited by sharan (2013-04-10 15:27:57)

    sharan wrote:edit
    ok delete this thread i changed qmake version in preferences dailog and it compiled
    That's a solution. Just mark your thread solved by editing your first post and prepending [SOLVED] to the title.

  • [Solved]Installing on two drives

    I'm aware you can have a partitioned install on the one drive. I assumed you could do the same but with two hard drives and I have run into some trouble.
    Is it in fact possible to have /dev/sda as the (/) root partition and /dev/sdb as the /home partition?
    Is the mounting any different?
    I was using;
    mount /dev/sda /mnt
    mkdir /mnt/home
    mount /dev/sdb /mnt/home
    then pacstraping to /mnt.
    SOLVED; Mounting sda1 and sdb1 instead of sda and sdb, disks have 1 partition each taking up the entire volume.
    mount /dev/sda1 /mnt
    mkdir /mnt/home
    mount /dev/sdb1 /mnt/home
    Last edited by Oldmoth (2014-06-20 23:14:31)

    drhill1 wrote:sda and sdb are the raw disks.  You need to mount the partitions - probably sda1 and sdb1, but use "fdisk -l /dev/sda" to check.
    How silly of me. That explains the problems I was having.
    Thank you very much.

  • [SOLVED] Installing Arch on usb stick - login to emergency mode only

    I have checked fstbe which is correct
    block is in HOOKS line. Also added ext4 to MODULES
    not but not least, i have used that usb for live distros and full installs. also portioned with gparted
    most attractive errors in log are
    kvm disabled in bios (i am installing only 32 bit version, booted to 32bit)
    can not execute plymouth
    any ideas
    thanks in advance
    Last edited by Archhotep (2013-03-25 13:19:28)

    WonderWoofy wrote:
    Archhotep wrote:
    Trilby wrote:It will continue working until you change what usb's are plugged in again.  If you want a real solution use UUID in fstab.
    I understand that. but both UUIDs and devices (/dev/sdX) are there in fstab if I am correct. I will check that in evening. if so did i make a mistake in generating fstab.
    I have generated fstab with
    genfstab -p /mnt >> /mnt/etc/fstab  (does this happens if i forget -p).
    as I have done this multiple times, I might have done some thing wrong. I will edit that file manually and removed /dev/sdx entries from that
    Honestly, you are not very good at sharing what is actually in your configs.  So as Trilby said above, no one really knows what is in your fstab, since you have not actually shared that with this thread. 
    As far as I can tell, when I run "genfstab -p /" on my running machine, letting the output just be dumped to stdout, it doesn't give me UUIDs anywhere.  And from your statement it seems you haven't even actually checked.
    What I have done in the past is used labels.  For example if you are using ext2, ext3, or ext4, you could assign a label using "e2label".  So lets say you label your rootfs (/) "usb_root".  Now instead of using the unreliable /dev/sdXY format, you can use LABEL=usb_root in your fstab, and in the bootloader you can use root=LABEL=usb_root (or root=/dev/disk/by-label/usb_root).
    I would also like to mention that this quote sucks:
    Archhotep wrote:No. UUIDs are there in the boot loader (I think) and grub was working fine and why the system is trying to boot at first place.
    There are a number of people who are patiently trying to walk you through this issue (with quite a bit more hand holding that usually takes place around here), and you don't have the decency/appreciation to even take the time to confirm what you are actually using in the configs that everyone is telling you to check and/or change.
    Sir,
    I was a standard linux (i mean ubuntu etc) user until sometime back.  I don't know exactly what should be there in /etc/fstab. I also do not know what information you might need to help me. If any one asked me the details about /etc/fstab etc might have provided. I have given what info what I felt was appropriate and enough. I do not have that machine with me when I was posting lat post, otherwise I might have posted. that laptop is at home. I already said thanks in my third post immediately after I solve the problem.
    Sorry if I am wrong, and thatnk you once again for letting me about labels.
    If I still have a question about /etc/fstab, i will post my fstab.
    I don't know where to look to know that my boot loader is using uuid or dev. It would be great help.
    Last edited by Archhotep (2013-03-25 16:06:11)

  • (Solved) Install Issues

    I have been going through the install, installed base, updated and followed wiki for rest of install . However there are 2 issues stopping the finalisation of the install.
    1. Cannot get Xserver to work
    2. Cannot get Gdm to work
    I have tried many different configs for xorg.conf, I have I believe install all drivers(as per wiki) and been reading the xorg.0.log file and troubleshooting those errors but still no go. Here is my last log file which really doesn't seem to have any great error at all but still it wont work. Can I get a hand to get this thing going please.
    X Window System Version 7.2.0
    Release Date: 22 January 2007
    X Protocol Version 11, Revision 0, Release 7.2
    Build Operating System: UNKNOWN
    Current Operating System: Linux myhost 2.6.21-ARCH #1 SMP PREEMPT Mon Jun 11 23:47:51 CEST 2007 i686
    Build Date: 08 April 2007
    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: Tue Jun 19 14:28:57 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "layout1"
    (**) |-->Screen "screen1" (0)
    (**) | |-->Monitor "monitor1"
    (**) | |-->Device "device1"
    (**) |-->Input Device "Keyboard1"
    (**) |-->Input Device "Mouse1"
    (**) FontPath set to:
    unix/:-1,
    /usr/share/fonts/misc:unscaled
    (==) RgbPath set to "/usr/share/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Option "AllowMouseOpenFail"
    (**) Extension "Composite" is enabled
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81c44a0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.1
    X.Org XInput driver : 0.7
    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 7.2.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.1
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2570 card 1458,2570 rev 02 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,2571 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:03:0: chip 8086,2573 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1d:0: chip 8086,24d2 card 1458,24d2 rev 02 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,24d4 card 1458,24d2 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,24d7 card 1458,24d2 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:3: chip 8086,24de card 1458,24d2 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,24dd card 1458,5006 rev 02 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev c2 class 06,04,00 hdr 01
    (II) PCI: 00:1f:0: chip 8086,24d0 card 0000,0000 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,24db card 1458,24d2 rev 02 class 01,01,8a hdr 00
    (II) PCI: 00:1f:2: chip 8086,24d1 card 1458,24d1 rev 02 class 01,01,8f hdr 00
    (II) PCI: 00:1f:3: chip 8086,24d3 card 1458,24d2 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 00:1f:5: chip 8086,24d5 card 1458,a002 rev 02 class 04,01,00 hdr 00
    (II) PCI: 01:00:0: chip 10de,0314 card 1554,1145 rev a1 class 03,00,00 hdr 00
    (II) PCI: 02:01:0: chip 8086,1019 card 1458,1019 rev 00 class 02,00,00 hdr 00
    (II) PCI: 03:02:0: chip 1317,0985 card 1113,1216 rev 11 class 02,00,00 hdr 00
    (II) PCI: 03:03:0: chip 14f1,8800 card 107d,6611 rev 05 class 04,00,00 hdr 80
    (II) PCI: 03:05:0: chip 104c,8024 card 1458,1000 rev 00 class 0c,00,10 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,3), 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: 0x000c (VGA_EN is set)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xf8000000 - 0xf9ffffff (0x2000000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:3:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x00009000 - 0x000090ff (0x100) IX[b]
    [1] -1 0 0x00009400 - 0x000094ff (0x100) IX[b]
    [2] -1 0 0x00009800 - 0x000098ff (0x100) IX[b]
    [3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xfd000000 - 0xfd0fffff (0x100000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:30:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[b]
    [2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[b]
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xfa000000 - 0xfcffffff (0x3000000) MX[b]
    (II) Bus 3 prefetchable memory range:
    [0] -1 0 0x30000000 - 0x300fffff (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 NV31 [GeForce FX 5600XT] rev 161, Mem @ 0xf8000000/24, 0xe0000000/28
    (--) PCI: (3:3:0) unknown vendor (0x14f1) unknown chipset (0x8800) rev 5, Mem @ 0xfb000000/24
    (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) PCI Memory resource overlap reduced 0xf0000000 from 0xf7ffffff to 0xefffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [1] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [2] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [3] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [4] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [5] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [6] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [7] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [8] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [9] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [10] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [11] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [12] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [13] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [15] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [16] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [17] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [18] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [19] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [20] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [21] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [22] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [23] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [24] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [26] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [27] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [28] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [29] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [30] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [1] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [2] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [3] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [4] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [5] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [6] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [7] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [8] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [9] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [10] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [11] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [12] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [13] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [15] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [16] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [17] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [18] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [19] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [20] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [21] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [22] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [23] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [24] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [26] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [27] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [28] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [29] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [30] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x300fffff (0x30000000) 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 - 0x300fffff (0x30000000) 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 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [5] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [6] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [7] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [8] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [9] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [10] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [11] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [12] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [13] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [14] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [15] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [19] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [20] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [21] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [22] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [23] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [24] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [25] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [26] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [27] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [28] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [29] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [30] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [32] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [33] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [34] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [35] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [36] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 7.2.0, 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: "v4l"
    (II) Loading /usr/lib/xorg/modules/drivers//v4l_drv.so
    (II) Module v4l: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 0.1.1
    ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 7.2.0, 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: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.0.2
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (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 7.2.0, 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: "/usr/lib/xorg/modules/extensions/nvidia/libglx.so" (glx)
    (WW) LoadModule: given non-canonical module name "/usr/lib/xorg/modules/extensions/nvidia/libglx.so"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.9755
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) Loading extension GLX
    (II) LoadModule: "glx"
    (II) Reloading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Loading extension GLX
    (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.9755
    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 7.2.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) v4l driver for Video4Linux
    (II) NVIDIA dlloader X Driver 1.0-9755 Mon Feb 26 23:23:13 PST 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 7.2.0, 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) Loading /usr/lib/xorg/modules//libramdac.so
    (II) Module ramdac: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.1
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x300fffff (0x30000000) 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 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [5] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [6] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [7] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [8] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [9] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [10] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [11] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [12] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [13] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [14] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [15] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [19] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [20] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [21] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [22] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [23] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [24] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [25] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [26] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [27] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [28] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [29] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [30] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [31] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [32] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [33] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [34] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [35] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [36] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x300fffff (0x30000000) 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 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [5] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [6] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [7] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [8] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [9] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [10] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [11] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [12] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [13] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [14] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [15] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [22] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [23] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [24] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [25] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [26] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [27] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [28] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [29] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [30] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [31] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [32] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [33] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [34] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [35] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [36] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [37] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [38] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [39] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) 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 "AddARGBGLXVisuals" "True"
    (**) 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 5600XT at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 131072 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.31.20.69.03
    (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 5600XT at
    (--) NVIDIA(0): PCI:1:0:0:
    (--) NVIDIA(0): Chuntex (CRT-0)
    (--) NVIDIA(0): Chuntex (CRT-0): 400.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (WW) NVIDIA(0): No valid modes for "480x360"; removing.
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1600x1200"
    (II) NVIDIA(0): "1400x1050"
    (II) NVIDIA(0): "1280x1024"
    (II) NVIDIA(0): "1280x960"
    (II) NVIDIA(0): "1152x864"
    (II) NVIDIA(0): "1024x768"
    (II) NVIDIA(0): "832x624"
    (II) NVIDIA(0): "800x600"
    (II) NVIDIA(0): "640x480"
    (II) NVIDIA(0): "320x240"
    (II) NVIDIA(0): Virtual screen size determined to be 1600 x 1200
    (--) NVIDIA(0): DPI set to (123, 121); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    [1] 0 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b]
    [2] -1 0 0x00100000 - 0x300fffff (0x30000000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xfc000000 - 0xfc003fff (0x4000) MX[b]
    [7] -1 0 0xfc004000 - 0xfc0047ff (0x800) MX[b]
    [8] -1 0 0xfc005000 - 0xfc0053ff (0x400) MX[b]
    [9] -1 0 0xfd000000 - 0xfd01ffff (0x20000) MX[b]
    [10] -1 0 0xfd102000 - 0xfd1020ff (0x100) MX[b]
    [11] -1 0 0xfd101000 - 0xfd1011ff (0x200) MX[b]
    [12] -1 0 0x30100000 - 0x301003ff (0x400) MX[b]
    [13] -1 0 0xfd100000 - 0xfd1003ff (0x400) MX[b]
    [14] -1 0 0xf0000000 - 0xefffffff (0x0) MX[b]O
    [15] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[b](B)
    [16] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [17] -1 0 0xf8000000 - 0xf8ffffff (0x1000000) MX[b](B)
    [18] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [19] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [20] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [21] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [22] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [23] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [24] -1 0 0x00009000 - 0x0000901f (0x20) IX[b]
    [25] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[b]
    [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [27] -1 0 0x00001400 - 0x0000141f (0x20) IX[b]
    [28] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[b]
    [29] -1 0 0x0000cc00 - 0x0000cc03 (0x4) IX[b]
    [30] -1 0 0x0000c800 - 0x0000c807 (0x8) IX[b]
    [31] -1 0 0x0000c400 - 0x0000c403 (0x4) IX[b]
    [32] -1 0 0x0000c000 - 0x0000c007 (0x8) IX[b]
    [33] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[b]
    [34] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [35] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [36] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[b]
    [37] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[b]
    [38] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[b]
    [39] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[b]
    [40] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[b]
    [41] -1 0 0x0000bc00 - 0x0000bc1f (0x20) IX[b]
    [42] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [43] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Setting mode "1600x1200"
    (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"
    (**) 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"
    (**) Keyboard1: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard1: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard1: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard1: XkbModel: "pc105"
    (**) Option "XkbLayout" "us(alt-intl)"
    (**) Keyboard1: XkbLayout: "us(alt-intl)"
    (**) Option "XkbOptions" "compose:rwin"
    (**) Keyboard1: XkbOptions: "compose:rwin"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard1: CustomKeycodes disabled
    (**) Option "Protocol" "ExplorerPS/2"
    (**) Mouse1: Device: "/dev/input/mice"
    (**) Mouse1: Protocol: "ExplorerPS/2"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
    (**) Mouse1: ZAxisMapping: buttons 4 and 5
    (**) Mouse1: Buttons: 9
    (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
    (II) Mouse1: ps2EnableDataReporting: succeeded
    Could not init font path element unix/:-1, removing from list!
    FreeFontPath: FPE "/usr/share/fonts/misc:unscaled" refcount is 2, should be 1; fixing.
    And here is my Xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder3) Mon Feb 26 23:38:46 PST 2007
    # File generated by XFdrake (rev 57713)
    # Refer to the xorg.conf man page for details about the format of
    # this file.
    Section "ServerLayout"
    Identifier "layout1"
    Screen "screen1" 0 0
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    EndSection
    Section "Files"
    # font server independent of the X server to render fonts.
    # minimal fonts to allow X to run without xfs
    FontPath "unix/:-1"
    FontPath "/usr/share/fonts/misc:unscaled"
    EndSection
    Section "Module"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "/usr/lib/xorg/modules/extensions/nvidia/libglx.so" # 3D layer
    Load "glx"
    EndSection
    Section "ServerFlags"
    #DontZap # disable <Crtl><Alt><BS> (server abort)
    # allows the server to start up even if the mouse does not work
    #DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
    Option "allowmouseopenfail"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us(alt-intl)"
    Option "XkbOptions" "compose:rwin"
    EndSection
    Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/input/mice"
    EndSection
    Section "Monitor"
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    Identifier "monitor1"
    VendorName "CTX"
    ModelName "CTX PR705F series"
    HorizSync 30.0 - 85.0
    VertRefresh 50.0 - 160.0
    ModeLine "768x576" 50.0 768 832 846 1000 576 590 595 630
    ModeLine "768x576" 63.1 768 800 960 1024 576 578 590 616
    EndSection
    Section "Device"
    Identifier "device1"
    Driver "nvidia"
    VendorName "NVIDIA Corp."
    BoardName "NVIDIA GeForce FX (generic)"
    EndSection
    Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "True"
    Option "DPMS"
    SubSection "Display"
    Depth 8
    Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite"
    EndSection
    Last edited by flebber (2007-06-20 17:14:12)

    This is my .xinitrc file
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    # exec wmaker
    # exec startkde
    # exec icewm
    # exec blackbox
    # exec fluxbox
    # exec gnome-session
    exec xterm
    I did the startx with xterm installed but still no go #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    # exec wmaker
    # exec startkde
    # exec icewm
    # exec blackbox
    # exec fluxbox
    exec gnome-session
    I see this error at the end of when X crashes everytime
    Could not init font path element unix/:-1, removing from list!
    FreeFontPath: FPE "/usr/share/fonts/misc:unscaled" refcount is 2, should be 1; fixing.
    and if it helps here is my inittab which I altered for gdm purposes from the wiki advice http://wiki.archlinux.org/index.php/Start_X_at_boot
    # /etc/inittab
    # Runlevels:
    # 0 Halt
    # 1(S) Single-user
    # 2 Not used
    # 3 Multi-user
    # 4 Not used
    # 5 X11
    # 6 Reboot
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    c1:2345:respawn:/sbin/agetty 38400 vc/1 linux
    c2:2345:respawn:/sbin/agetty 38400 vc/2 linux
    c3:2345:respawn:/sbin/agetty 38400 vc/3 linux
    c4:2345:respawn:/sbin/agetty 38400 vc/4 linux
    c5:2345:respawn:/sbin/agetty 38400 vc/5 linux
    c6:2345:respawn:/sbin/agetty 38400 vc/6 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    x:5:respawn:/usr/bin/gdm -nodaemon
    # End of file
    Last edited by flebber (2007-06-19 23:05:52)

Maybe you are looking for

  • How Do You Use XML To Create Image Upload On A WebSite?

    Hello, Could some one please help me understand how to create web image gallery and web video gallery using XML? I have found few xml codes that could be used to do this but I am not so sure how to use them. I want my clients to be able upload images

  • IPhoto not properly sharing same library between different accounts

    I have my iPhoto library installed on a 4GB thunderbird external hard drive, brand LaCie in case that matters. I made sure to select the drive and adjust the permissions as recommended in the Apple tech support article - basically you have to select

  • How to split one scene in two in iMovie HD 06

    Hi there, is iMovie HD 06 able to split one scene in two? I am trying to insert slow motion for part of the scene but not the whole. Can I do that? Are there alternatives?

  • What is the best font to be used in graphs and tables?

    I want to know what is the best font (or the most used) for discoverer10g graphs and tables. I used Arial, Dialog, Veranda, 7, 8, 9 but it seems that there is a space between letters especially on the graph. I'm looking for a font that does not have

  • Tape backups "stuck" in controlfile

    At one point, there was a tape backup device configured and working. This tape device has since been removed, but there are still backups that were done to tape that are in the controlfile. These backups are quite old and rman knows they are obsolete