Nvidia Arch-style instaler

Last time I created (for my friend, I haven't nvidia card) Nvidia installer in Arch style (no magic, only regular PKGBUILD).
Install instruction (strange, because nvidia install script overwriting some xorg files and some files are not be removed after uninstall):
0) Exit with X
1) Uninstall driver (pacman -R nvidia) and change all modification in config files (/etc/rc.conf, /etc/modprobe.conf OR /etc/modules.conf /etc/X11/XF86Config OR /etc/X11/xorg.conf)
2) Install and uninstall this version nvidia driver (with -f option)
3) Uninstall and install xorg package
4) Install this driver (with -f option, backup was created) and enjoy.
For my friend everything works fine (GForce MX-400) but please be carefully. Please hack it when something wrong occured.
Greetings,
Miroslaw
PKGBUILD:
# $Id: $
# Contributor: forest76 <[email protected]>
pkgname=nvidia
pkgver=1.0
pkgrel=6111
pkgdesc="The Nvidia drivers for XFree86"
url="http://www.nvidia.com"
depends=('bash')
source=(http://download.nvidia.com/XFree86/Linux-x86/$pkgver-$pkgrel/NVIDIA-Linux-x86-$pkgver-$pkgrel-pkg1.run)
install="nvidia.install"
build() {
# Unpack and extract
cd $startdir/src
chmod +x NVIDIA-Linux-x86-$pkgver-$pkgrel-pkg1.run
sh NVIDIA-Linux-x86-$pkgver-$pkgrel-pkg1.run -x
# Make kernel modules
cd $startdir/src/NVIDIA-Linux-x86-$pkgver-$pkgrel-pkg1/usr/src/nv
make clean
make module SYSSRC=/lib/modules/`uname -r`/build || return 1
# Prepare dirs
mkdir -p $startdir/pkg/lib/modules/`uname -r`/kernel/drivers/video
mkdir -p $startdir/pkg/usr/lib
mkdir -p $startdir/pkg/usr/X11R6/lib/modules/drivers
mkdir -p $startdir/pkg/usr/X11R6/lib/modules/extensions
mkdir -p $startdir/pkg/usr/lib/tls
mkdir -p $startdir/pkg/usr/X11R6/lib
mkdir -p $startdir/pkg/usr/include
mkdir -p $startdir/pkg/usr/bin
# Copy files
rootdir=$startdir/src/NVIDIA-Linux-x86-$pkgver-$pkgrel-pkg1
drvname=$pkgver.$pkgrel
install -m644 $rootdir/usr/src/nv/nvidia.ko $startdir/pkg/lib/modules/`uname -r`/kernel/drivers/video
install -m644 $rootdir/usr/lib/libGL.so.$drvname $startdir/pkg/usr/lib
install -m644 $rootdir/usr/lib/libGLcore.so.$drvname $startdir/pkg/usr/lib
install -m644 $rootdir/usr/lib/libGL.la $startdir/pkg/usr/lib
install -m644 $rootdir/usr/lib/libnvidia-tls.so.$drvname $startdir/pkg/usr/lib
install -m644 $rootdir/usr/lib/tls/libnvidia-tls.so.$drvname $startdir/pkg/usr/lib/tls
install -m644 $rootdir/usr/X11R6/lib/libXvMCNVIDIA.a $startdir/pkg/usr/X11R6/lib
install -m644 $rootdir/usr/X11R6/lib/libXvMCNVIDIA.so.$drvname $startdir/pkg/usr/X11R6/lib
install -m644 $rootdir/usr/X11R6/lib/modules/drivers/nvidia_drv.o $startdir/pkg/usr/X11R6/lib/modules/drivers
install -m644 $rootdir/usr/X11R6/lib/modules/extensions/libglx.so.$drvname $startdir/pkg/usr/X11R6/lib/modules/extensions
for i in $rootdir/usr/include/*
do
cp -rf $i $startdir/pkg/usr/include
done
install -m755 $rootdir/usr/bin/nvidia-settings $startdir/pkg/usr/bin
install -m755 $rootdir/usr/bin/nvidia-bug-report.sh $startdir/pkg/usr/bin
install -m755 $rootdir/nvidia-installer $startdir/pkg/usr/bin
# Make links
( cd $startdir/pkg/usr/lib && ln -fs libGL.so.$drvname libGL.so && ln -fs libGL.so.$drvname libGL.so.1 )
( cd $startdir/pkg/usr/lib && ln -fs libGLcore.so.$drvname libGLcore.so && ln -fs libGLcore.so.$drvname libGLcore.so.1 )
( cd $startdir/pkg/usr/X11R6/lib/modules/extensions && ln -fs libglx.so.$drvname libglx.so && ln -fs libglx.so.$drvname libglx.so.1 )
( cd $startdir/pkg/usr/X11R6/lib && ln -fs libXvMCNVIDIA.so.$drvname libXvMCNVIDIA_dynamic.so && ln -fs libXvMCNVIDIA.so.$drvname libXvMCNVIDIA_dynamic.so.1 )
nvidia.install
pre_install() {
echo 'Backup files...'
mv -f /usr/include/GL/glext.h /usr/include/GL/glext.h.pacbak
mv -f /usr/include/GL/gl.h /usr/include/GL/gl.h.pacbak
mv -f /usr/include/GL/glx.h /usr/include/GL/glx.h.pacbak
mv -f /usr/include/GL/glxtokens.h /usr/include/GL/glxtokens.h.pacbak
mv -f /usr/lib/libGL.la /usr/lib/libGL.la.pacbak
mv -f /usr/lib/libGL.so /usr/lib/libGL.so.pacbak
mv -f /usr/lib/libGL.so.1 /usr/lib/libGL.so.1.pacbak
post_install() {
# Inserting modules...
echo "Inserting modules..."
depmod -ae
modprobe nvidia
echo "...DONE"
echo
# Change config files...
echo "Change config files..."
echo
echo ".../etc/XF86Config..."
echo
sed -i "s:"nv":"nvidia":g" /etc/X11/XF86Config
sed -i "s:Load "GLcore":#Load "GLcore":g" /etc/X11/XF86Config
sed -i "s:Load "dri":#Load "dri":g" /etc/X11/XF86Config
echo
echo ".../etc/modules.conf or /etc/modprobe.conf..."
echo
if [ `uname -r | awk -F . '{print $2}'` = "4" ]; then
cat << EOF >> /etc/modules.conf
alias /dev/nvidia* nvidia
EOF
elif [ `uname -r | awk -F . '{print $2}'` = "6" ]; then
cat << EOF >> /etc/modprobe.conf
alias char-major-195* nvidia
EOF
fi
echo
echo ".../etc/rc.conf..."
echo
sed -i "s:MODULES=(:MODULES=(nvidia :g" /etc/rc.conf
echo "...DONE"
echo
pre_upgrade() {
pre_install
post_upgrade() {
post_install
pre_remove() {
# Remove modules...
echo "Remove modules..."
rmmod nvidia
depmod -ae
echo "...DONE"
# Restoring config files...
echo "Restoring config files..."
echo ".../etc/XF86Config..."
echo
sed -i "s:"nvidia":"nv":g" /etc/X11/XF86Config
sed -i "s:#Load "GLcore":Load "GLcore":g" /etc/X11/XF86Config
sed -i "s:#Load "dri":Load "dri":g" /etc/X11/XF86Config
echo
echo ".../etc/modules.conf or /etc/modprobe.conf..."
echo
if [ `uname -r | awk -F . '{print $2}'` = "4" ]; then
sed -i "s:alias /dev/nvidia* nvidia::g" /etc/modules.conf
sed -i '/^$/d' /etc/modules.conf
echo '' >> /etc/modules.conf
elif [ `uname -r | awk -F . '{print $2}'` = "6" ]; then
sed -i "s:alias char-major-195* nvidia::g" /etc/modprobe.conf
sed -i '/^$/d' /etc/modprobe.conf
echo '' >> /etc/modprobe.conf
fi
echo
echo ".../etc/rc.conf..."
echo
sed -i "s:nvidia ::g" /etc/rc.conf
echo
echo "Post install clean"
echo
rm /var/log/nvidia-installer.log
rm -rf /var/lib/nvidia
rm -f /lib/modules/`uname -r`/kernel/drivers/video/nvidia.ko
rmdir /lib/modules/`uname -r`/kernel/drivers/video
echo
echo "...DONE"
echo
post_remove() {
echo 'Restore files...'
mv -f /usr/include/GL/glext.h.pacbak /usr/include/GL/glext.h
mv -f /usr/include/GL/gl.h.pacbak /usr/include/GL/gl.h
mv -f /usr/include/GL/glx.h.pacbak /usr/include/GL/glx.h
mv -f /usr/include/GL/glxtokens.h.pacbak /usr/include/GL/glxtokens.h
mv -f /usr/lib/libGL.la.pacbak /usr/lib/libGL.la
mv -f /usr/lib/libGL.so.pacbak /usr/lib/libGL.so
mv -f /usr/lib/libGL.so.1.pacbak /usr/lib/libGL.so.1
op=$1
shift
$op $*

An nVidia installer already exists in Staging.

Similar Messages

  • X server won't start (Arch Linux installed on USB key)

    Hi,
    I installed Arch Linux on a USB key (see the original thread: https://bbs.archlinux.org/viewtopic.php?id=185441).
    The problem is that X doesn't start on all machines.
    When starting the system on a machine with NVIDIA GTX 560Ti graphics card:
    - X doesn't start using startx or xinit and there are no log entries in /var/log/Xorg.*.log (as I haven't tried to start X).
    - I'm getting the message "Waiting for X server to begin accepting connections .. .. .. ..".
    - Additionally: The "default terminals tty1/2/3/..." (which I'm using to start X) from have a poor resolution (I think 640x480 pixel).
    When starting the system on a virtual machine or a machine with an ATI Radeon (mobile) graphics card:
    - X starts and runs without any trouble the XFCE desktop environment.
    - Additionally: The default terminals have a proper resolution (I think the maximal resolution of the display).
    What happens if you uninstall nvidia and use nouveau?
    I installed all video drivers recommended here: https://wiki.archlinux.org/index.php/In … eo_drivers
    So I was using nouveau in the first place. I already tried to uninstall the open source driver (xf86-video-nouveau, nouveau-dri) to use the default driver (I think this is xf86-video-vesa) with no effect.
    The poor tty resolution is to be expected if the closed-source nvidia drivers are installed, because they don't support KMS.
    I have never tried to install the proprietary driver (and actually don't want to use the proprietary driver).
    Also have you looked in /etc/X11 ?
    Yes. I don't think that my configuration contains anything preventing X from starting using the NVIDIA graphics card (but I'm not sure what to look for).
    I'm starting X using "startx" or "xinit -- :0 -nolisten tcp vt$XDG_VTNR". Here's my ~/.xinitrc:
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    exec startxfce4
    Last edited by The Infinity (2014-08-14 21:17:41)

    I figured out where the problem comes from. It is actually the screen (which has a resolution of 1920x1080 pixel). When using a screen (with a smaller resolution) I'm getting a decent resolution in the terminal and - more imporant -  X starts and seems to use the Nouveau driver (which I have installed again). When plugging my normal screen again (while X is running) I'm able to use this screen with the maximum resolution without problems (so only starting with this screen does not work). Now I have a reference point to fix the problem.
    The other thread might be interesting as well.
    Last edited by The Infinity (2014-08-17 02:36:57)

  • [solved] freezing arch after installing video driver

    hi
    again me
    a newbie user of arch
    before installing graphic card driver i didn't have any problem
    but after installing it the speed of the arch goes down and you know the openbox stoped several time( it's freezed)
    i have this problem with tty too it means that the tty freezing too
    i have AMD ATi 5500 HD and i use X86-ati (i think it's true)
    what should i do?
    Last edited by Numb95 (2012-04-26 07:06:27)

    this is every thing that you want
    /var/log/Xorg.0.log
    [ 20.834]
    X.Org X Server 1.12.1
    Release Date: 2012-04-13
    [ 20.834] X Protocol Version 11, Revision 0
    [ 20.834] Build Operating System: Linux 3.3.1-1-ARCH i686
    [ 20.834] Current Operating System: Linux goodarzi 3.0.28-1-lts #1 SMP PREEMPT Mon Apr 16 19:36:59 UTC 2012 i686
    [ 20.834] Kernel command line: root=/dev/disk/by-uuid/a646214b-8981-45c7-a011-d5b5eb92200a ro
    [ 20.834] Build Date: 14 April 2012 07:32:51AM
    [ 20.834]
    [ 20.834] Current version of pixman: 0.24.4
    [ 20.834] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 20.834] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 20.834] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 21 10:42:30 2009
    [ 20.877] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 20.892] (==) No Layout section. Using the first Screen section.
    [ 20.892] (==) No screen section available. Using defaults.
    [ 20.892] (**) |-->Screen "Default Screen Section" (0)
    [ 20.892] (**) | |-->Monitor "<default monitor>"
    [ 20.892] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 20.892] (==) Automatically adding devices
    [ 20.892] (==) Automatically enabling devices
    [ 20.927] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 20.927] Entry deleted from font path.
    [ 20.927] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 20.927] Entry deleted from font path.
    [ 20.927] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 20.927] Entry deleted from font path.
    [ 20.927] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 20.928] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 20.928] Entry deleted from font path.
    [ 20.928] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 20.928] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 20.928] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 20.928] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.928] (II) Loader magic: 0x82215a0
    [ 20.928] (II) Module ABI versions:
    [ 20.928] X.Org ANSI C Emulation: 0.4
    [ 20.928] X.Org Video Driver: 12.0
    [ 20.928] X.Org XInput driver : 16.0
    [ 20.928] X.Org Server Extension : 6.0
    [ 20.928] (--) PCI:*(0:4:0:0) 1002:68d9:174b:e142 rev 0, Mem @ 0xd0000000/268435456, 0xfebe0000/131072, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 20.928] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 20.928] (II) LoadModule: "extmod"
    [ 20.933] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 20.961] (II) Module extmod: vendor="X.Org Foundation"
    [ 20.961] compiled for 1.12.1, module version = 1.0.0
    [ 20.961] Module class: X.Org Server Extension
    [ 20.961] ABI class: X.Org Server Extension, version 6.0
    [ 20.961] (II) Loading extension MIT-SCREEN-SAVER
    [ 20.961] (II) Loading extension XFree86-VidModeExtension
    [ 20.961] (II) Loading extension XFree86-DGA
    [ 20.961] (II) Loading extension DPMS
    [ 20.961] (II) Loading extension XVideo
    [ 20.961] (II) Loading extension XVideo-MotionCompensation
    [ 20.961] (II) Loading extension X-Resource
    [ 20.961] (II) LoadModule: "dbe"
    [ 20.961] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 20.962] (II) Module dbe: vendor="X.Org Foundation"
    [ 20.962] compiled for 1.12.1, module version = 1.0.0
    [ 20.962] Module class: X.Org Server Extension
    [ 20.962] ABI class: X.Org Server Extension, version 6.0
    [ 20.962] (II) Loading extension DOUBLE-BUFFER
    [ 20.962] (II) LoadModule: "glx"
    [ 20.962] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 20.973] (II) Module glx: vendor="X.Org Foundation"
    [ 20.974] compiled for 1.12.1, module version = 1.0.0
    [ 20.974] ABI class: X.Org Server Extension, version 6.0
    [ 20.974] (==) AIGLX enabled
    [ 20.974] (II) Loading extension GLX
    [ 20.974] (II) LoadModule: "record"
    [ 20.974] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 20.974] (II) Module record: vendor="X.Org Foundation"
    [ 20.974] compiled for 1.12.1, module version = 1.13.0
    [ 20.974] Module class: X.Org Server Extension
    [ 20.974] ABI class: X.Org Server Extension, version 6.0
    [ 20.974] (II) Loading extension RECORD
    [ 20.974] (II) LoadModule: "dri"
    [ 20.975] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 20.975] (II) Module dri: vendor="X.Org Foundation"
    [ 20.975] compiled for 1.12.1, module version = 1.0.0
    [ 20.975] ABI class: X.Org Server Extension, version 6.0
    [ 20.975] (II) Loading extension XFree86-DRI
    [ 20.976] (II) LoadModule: "dri2"
    [ 20.976] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 20.976] (II) Module dri2: vendor="X.Org Foundation"
    [ 20.976] compiled for 1.12.1, module version = 1.2.0
    [ 20.977] ABI class: X.Org Server Extension, version 6.0
    [ 20.977] (II) Loading extension DRI2
    [ 20.977] (==) Matched ati as autoconfigured driver 0
    [ 20.977] (==) Matched vesa as autoconfigured driver 1
    [ 20.977] (==) Matched fbdev as autoconfigured driver 2
    [ 20.977] (==) Assigned the driver to the xf86ConfigLayout
    [ 20.977] (II) LoadModule: "ati"
    [ 20.977] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 21.015] (II) Module ati: vendor="X.Org Foundation"
    [ 21.015] compiled for 1.12.0, module version = 6.14.4
    [ 21.015] Module class: X.Org Video Driver
    [ 21.015] ABI class: X.Org Video Driver, version 12.0
    [ 21.015] (II) LoadModule: "radeon"
    [ 21.015] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 21.029] (II) Module radeon: vendor="X.Org Foundation"
    [ 21.029] compiled for 1.12.0, module version = 6.14.4
    [ 21.029] Module class: X.Org Video Driver
    [ 21.029] ABI class: X.Org Video Driver, version 12.0
    [ 21.029] (II) LoadModule: "vesa"
    [ 21.030] (WW) Warning, couldn't open module vesa
    [ 21.030] (II) UnloadModule: "vesa"
    [ 21.030] (II) Unloading vesa
    [ 21.030] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 21.030] (II) LoadModule: "fbdev"
    [ 21.030] (WW) Warning, couldn't open module fbdev
    [ 21.030] (II) UnloadModule: "fbdev"
    [ 21.030] (II) Unloading fbdev
    [ 21.030] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 21.030] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA
    [ 21.034] (++) using VT number 7
    [ 21.038] (II) [KMS] Kernel modesetting enabled.
    [ 21.038] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 21.038] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 21.038] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 21.038] (==) RADEON(0): Default visual is TrueColor
    [ 21.039] (==) RADEON(0): RGB weight 888
    [ 21.039] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 21.039] (--) RADEON(0): Chipset: "ATI Radeon HD 5570" (ChipID = 0x68d9)
    [ 21.039] (II) RADEON(0): PCIE card detected
    [ 21.039] drmOpenDevice: node name is /dev/dri/card0
    [ 21.039] drmOpenDevice: open result is 8, (OK)
    [ 21.039] drmOpenByBusid: Searching for BusID pci:0000:04:00.0
    [ 21.039] drmOpenDevice: node name is /dev/dri/card0
    [ 21.039] drmOpenDevice: open result is 8, (OK)
    [ 21.039] drmOpenByBusid: drmOpenMinor returns 8
    [ 21.039] drmOpenByBusid: drmGetBusid reports pci:0000:04:00.0
    [ 21.039] (II) Loading sub module "exa"
    [ 21.039] (II) LoadModule: "exa"
    [ 21.039] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 21.057] (II) Module exa: vendor="X.Org Foundation"
    [ 21.057] compiled for 1.12.1, module version = 2.5.0
    [ 21.057] ABI class: X.Org Video Driver, version 12.0
    [ 21.057] (II) RADEON(0): KMS Color Tiling: enabled
    [ 21.057] (II) RADEON(0): KMS Pageflipping: enabled
    [ 21.057] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 21.061] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 21.065] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 21.120] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 21.124] (II) RADEON(0): EDID for output HDMI-0
    [ 21.128] (II) RADEON(0): EDID for output DVI-0
    [ 21.183] (II) RADEON(0): EDID for output VGA-0
    [ 21.183] (II) RADEON(0): Manufacturer: GSM Model: 4300 Serial#: 4049
    [ 21.183] (II) RADEON(0): Year: 2008 Week: 39
    [ 21.183] (II) RADEON(0): EDID Version: 1.3
    [ 21.183] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 21.183] (II) RADEON(0): Signal levels configurable
    [ 21.183] (II) RADEON(0): Sync: Separate
    [ 21.183] (II) RADEON(0): Max Image Size [cm]: horiz.: 33 vert.: 24
    [ 21.183] (II) RADEON(0): Gamma: 2.81
    [ 21.183] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 21.183] (II) RADEON(0): First detailed timing is preferred mode
    [ 21.183] (II) RADEON(0): redX: 0.636 redY: 0.327 greenX: 0.278 greenY: 0.600
    [ 21.183] (II) RADEON(0): blueX: 0.145 blueY: 0.064 whiteX: 0.283 whiteY: 0.298
    [ 21.183] (II) RADEON(0): Supported established timings:
    [ 21.183] (II) RADEON(0): 720x400@70Hz
    [ 21.183] (II) RADEON(0): 720x400@88Hz
    [ 21.183] (II) RADEON(0): 640x480@60Hz
    [ 21.183] (II) RADEON(0): 640x480@67Hz
    [ 21.183] (II) RADEON(0): 640x480@72Hz
    [ 21.183] (II) RADEON(0): 640x480@75Hz
    [ 21.183] (II) RADEON(0): 800x600@56Hz
    [ 21.183] (II) RADEON(0): 800x600@60Hz
    [ 21.183] (II) RADEON(0): 800x600@72Hz
    [ 21.183] (II) RADEON(0): 800x600@75Hz
    [ 21.183] (II) RADEON(0): 832x624@75Hz
    [ 21.183] (II) RADEON(0): 1024x768@87Hz (interlaced)
    [ 21.183] (II) RADEON(0): 1024x768@60Hz
    [ 21.183] (II) RADEON(0): 1024x768@70Hz
    [ 21.183] (II) RADEON(0): 1024x768@75Hz
    [ 21.183] (II) RADEON(0): 1152x864@75Hz
    [ 21.183] (II) RADEON(0): Manufacturer's mask: 0
    [ 21.183] (II) RADEON(0): Supported standard timings:
    [ 21.183] (II) RADEON(0): #0: hsize: 640 vsize 480 refresh: 85 vid: 22833
    [ 21.183] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 21.183] (II) RADEON(0): #2: hsize: 800 vsize 600 refresh: 85 vid: 22853
    [ 21.183] (II) RADEON(0): #3: hsize: 1024 vsize 768 refresh: 85 vid: 22881
    [ 21.183] (II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 21.183] (II) RADEON(0): #5: hsize: 1280 vsize 960 refresh: 70 vid: 19073
    [ 21.183] (II) RADEON(0): Supported detailed timing:
    [ 21.183] (II) RADEON(0): clock: 94.5 MHz Image Size: 310 x 230 mm
    [ 21.183] (II) RADEON(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0
    [ 21.183] (II) RADEON(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0
    [ 21.183] (II) RADEON(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 71 kHz, PixClock max 115 MHz
    [ 21.183] (II) RADEON(0): Monitor name: T720FB
    [ 21.183] (II) RADEON(0): Monitor name:
    [ 21.183] (II) RADEON(0): EDID (in hex):
    [ 21.183] (II) RADEON(0): 00ffffffffffff001e6d0043d10f0000
    [ 21.183] (II) RADEON(0): 27120103182118b5eaf629a253479925
    [ 21.184] (II) RADEON(0): 10484cfffe803159714f455961598180
    [ 21.184] (II) RADEON(0): 814a01010101ea240060410028303060
    [ 21.184] (II) RADEON(0): 130036e61000001e000000fd0032a01e
    [ 21.184] (II) RADEON(0): 470b000a202020202020000000fc0054
    [ 21.184] (II) RADEON(0): 3732304642200a2020202020000000fc
    [ 21.184] (II) RADEON(0): 000a20202020202020202020202000c1
    [ 21.184] (II) RADEON(0): Not using mode "1280x960" (bad mode clock/interlace/doublescan)
    [ 21.184] (II) RADEON(0): Printing probed modes for output VGA-0
    [ 21.184] (II) RADEON(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 21.184] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "1024x768"x87.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "800x600"x85.1 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "720x400"x87.8 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 21.184] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 21.184] (II) RADEON(0): Output HDMI-0 disconnected
    [ 21.184] (II) RADEON(0): Output DVI-0 disconnected
    [ 21.184] (II) RADEON(0): Output VGA-0 connected
    [ 21.184] (II) RADEON(0): Using exact sizes for initial modes
    [ 21.184] (II) RADEON(0): Output VGA-0 using initial mode 1024x768
    [ 21.184] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 21.184] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:40000000 visible:fcc0000
    [ 21.184] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 21.184] (==) RADEON(0): DPI set to (96, 96)
    [ 21.184] (II) Loading sub module "fb"
    [ 21.184] (II) LoadModule: "fb"
    [ 21.184] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 21.186] (II) Module fb: vendor="X.Org Foundation"
    [ 21.186] compiled for 1.12.1, module version = 1.0.0
    [ 21.186] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 21.186] (II) Loading sub module "ramdac"
    [ 21.186] (II) LoadModule: "ramdac"
    [ 21.186] (II) Module "ramdac" already built-in
    [ 21.186] (--) Depth 24 pixmap format is 32 bpp
    [ 21.187] (II) RADEON(0): [DRI2] Setup complete
    [ 21.187] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 21.187] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 21.187] (II) RADEON(0): Front buffer size: 3072K
    [ 21.187] (II) RADEON(0): VRAM usage limit set to 230169K
    [ 21.188] (==) RADEON(0): Backing store disabled
    [ 21.188] (II) RADEON(0): Direct rendering enabled
    [ 21.189] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 21.189] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 21.189] (II) EXA(0): Driver registered support for the following operations:
    [ 21.189] (II) Solid
    [ 21.189] (II) Copy
    [ 21.189] (II) Composite (RENDER acceleration)
    [ 21.189] (II) UploadToScreen
    [ 21.189] (II) DownloadFromScreen
    [ 21.189] (II) RADEON(0): Acceleration enabled
    [ 21.189] (==) RADEON(0): DPMS enabled
    [ 21.189] (==) RADEON(0): Silken mouse enabled
    [ 21.222] (II) RADEON(0): Set up textured video
    [ 21.222] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 21.222] (II) RADEON(0): [XvMC] Extension initialized.
    [ 21.222] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 21.222] (--) RandR disabled
    [ 21.222] (II) Initializing built-in extension Generic Event Extension
    [ 21.222] (II) Initializing built-in extension SHAPE
    [ 21.222] (II) Initializing built-in extension MIT-SHM
    [ 21.222] (II) Initializing built-in extension XInputExtension
    [ 21.222] (II) Initializing built-in extension XTEST
    [ 21.222] (II) Initializing built-in extension BIG-REQUESTS
    [ 21.222] (II) Initializing built-in extension SYNC
    [ 21.222] (II) Initializing built-in extension XKEYBOARD
    [ 21.222] (II) Initializing built-in extension XC-MISC
    [ 21.222] (II) Initializing built-in extension SECURITY
    [ 21.222] (II) Initializing built-in extension XINERAMA
    [ 21.222] (II) Initializing built-in extension XFIXES
    [ 21.222] (II) Initializing built-in extension RENDER
    [ 21.222] (II) Initializing built-in extension RANDR
    [ 21.222] (II) Initializing built-in extension COMPOSITE
    [ 21.222] (II) Initializing built-in extension DAMAGE
    [ 21.538] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 21.538] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 21.538] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 21.538] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 21.539] (II) AIGLX: Loaded and initialized r600
    [ 21.539] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 21.540] (II) RADEON(0): Setting screen physical size to 270 x 203
    [ 21.747] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 21.747] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 21.747] (II) LoadModule: "evdev"
    [ 21.747] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 21.747] (II) Module evdev: vendor="X.Org Foundation"
    [ 21.747] compiled for 1.12.0, module version = 2.7.0
    [ 21.747] Module class: X.Org XInput Driver
    [ 21.747] ABI class: X.Org XInput driver, version 16.0
    [ 21.747] (II) Using input driver 'evdev' for 'Power Button'
    [ 21.747] (**) Power Button: always reports core events
    [ 21.747] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 21.748] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 21.748] (--) evdev: Power Button: Found keys
    [ 21.748] (II) evdev: Power Button: Configuring as keyboard
    [ 21.748] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 21.748] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 21.748] (**) Option "xkb_rules" "evdev"
    [ 21.748] (**) Option "xkb_model" "evdev"
    [ 21.748] (**) Option "xkb_layout" "us"
    [ 21.771] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 21.771] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 21.771] (II) Using input driver 'evdev' for 'Power Button'
    [ 21.771] (**) Power Button: always reports core events
    [ 21.771] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 21.771] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 21.771] (--) evdev: Power Button: Found keys
    [ 21.771] (II) evdev: Power Button: Configuring as keyboard
    [ 21.771] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 21.771] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 21.771] (**) Option "xkb_rules" "evdev"
    [ 21.771] (**) Option "xkb_model" "evdev"
    [ 21.771] (**) Option "xkb_layout" "us"
    [ 21.772] (II) config/udev: Adding input device PS/2+USB Mouse (/dev/input/event1)
    [ 21.772] (**) PS/2+USB Mouse: Applying InputClass "evdev pointer catchall"
    [ 21.772] (II) Using input driver 'evdev' for 'PS/2+USB Mouse'
    [ 21.772] (**) PS/2+USB Mouse: always reports core events
    [ 21.772] (**) evdev: PS/2+USB Mouse: Device: "/dev/input/event1"
    [ 21.772] (--) evdev: PS/2+USB Mouse: Vendor 0x4f3 Product 0x214
    [ 21.772] (--) evdev: PS/2+USB Mouse: Found 9 mouse buttons
    [ 21.772] (--) evdev: PS/2+USB Mouse: Found scroll wheel(s)
    [ 21.772] (--) evdev: PS/2+USB Mouse: Found relative axes
    [ 21.772] (--) evdev: PS/2+USB Mouse: Found x and y relative axes
    [ 21.772] (II) evdev: PS/2+USB Mouse: Configuring as mouse
    [ 21.772] (II) evdev: PS/2+USB Mouse: Adding scrollwheel support
    [ 21.772] (**) evdev: PS/2+USB Mouse: YAxisMapping: buttons 4 and 5
    [ 21.772] (**) evdev: PS/2+USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 21.772] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.0/input/input1/event1"
    [ 21.772] (II) XINPUT: Adding extended input device "PS/2+USB Mouse" (type: MOUSE, id 8)
    [ 21.772] (II) evdev: PS/2+USB Mouse: initialized for relative axes.
    [ 21.772] (**) PS/2+USB Mouse: (accel) keeping acceleration scheme 1
    [ 21.772] (**) PS/2+USB Mouse: (accel) acceleration profile 0
    [ 21.772] (**) PS/2+USB Mouse: (accel) acceleration factor: 2.000
    [ 21.772] (**) PS/2+USB Mouse: (accel) acceleration threshold: 4
    [ 21.773] (II) config/udev: Adding input device PS/2+USB Mouse (/dev/input/mouse0)
    [ 21.773] (II) No input driver specified, ignoring this device.
    [ 21.773] (II) This device may have been added with another device file.
    [ 21.773] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 21.773] (II) No input driver specified, ignoring this device.
    [ 21.773] (II) This device may have been added with another device file.
    [ 21.773] (II) config/udev: Adding input device HDA NVidia Headphone (/dev/input/event6)
    [ 21.773] (II) No input driver specified, ignoring this device.
    [ 21.773] (II) This device may have been added with another device file.
    [ 21.773] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP (/dev/input/event7)
    [ 21.773] (II) No input driver specified, ignoring this device.
    [ 21.773] (II) This device may have been added with another device file.
    [ 21.774] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 21.774] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 21.774] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 21.774] (**) AT Translated Set 2 keyboard: always reports core events
    [ 21.774] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 21.774] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 21.774] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 21.774] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 21.774] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 21.774] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 21.774] (**) Option "xkb_rules" "evdev"
    [ 21.774] (**) Option "xkb_model" "evdev"
    [ 21.774] (**) Option "xkb_layout" "us"
    [ 21.774] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 21.774] (II) No input driver specified, ignoring this device.
    [ 21.774] (II) This device may have been added with another device file.
    [ 2455.080] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 2455.927] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 2455.991] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 2455.991] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 2455.991] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 2455.991] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 2455.991] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 2455.991] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2455.991] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 2459.460] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 2468.257] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 2468.321] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 2468.321] (II) RADEON(0): Using hsync ranges from config file
    [ 2468.321] (II) RADEON(0): Using vrefresh ranges from config file
    [ 2468.321] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 2468.321] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 2468.321] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2468.321] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 39184.450] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 39373.609] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 39374.296] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 39374.296] (II) RADEON(0): Using hsync ranges from config file
    [ 39374.296] (II) RADEON(0): Using vrefresh ranges from config file
    [ 39374.296] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 39374.296] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 39374.296] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 39374.296] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 39391.660] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 39391.716] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 39391.780] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 39391.780] (II) RADEON(0): Using hsync ranges from config file
    [ 39391.780] (II) RADEON(0): Using vrefresh ranges from config file
    [ 39391.780] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 39391.780] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 39391.780] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 39391.780] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40142.350] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40174.146] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40174.210] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40174.210] (II) RADEON(0): Using hsync ranges from config file
    [ 40174.210] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40174.210] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40174.210] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40174.210] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40174.210] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40196.210] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40196.465] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40196.528] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40196.528] (II) RADEON(0): Using hsync ranges from config file
    [ 40196.528] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40196.528] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40196.528] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40196.528] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40196.528] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40236.990] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40237.531] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40237.594] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40237.594] (II) RADEON(0): Using hsync ranges from config file
    [ 40237.594] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40237.594] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40237.594] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40237.594] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40237.594] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40238.710] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40249.038] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40249.102] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40249.102] (II) RADEON(0): Using hsync ranges from config file
    [ 40249.102] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40249.102] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40249.102] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40249.102] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40249.102] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40281.360] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40289.492] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40289.560] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40289.560] (II) RADEON(0): Using hsync ranges from config file
    [ 40289.560] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40289.560] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40289.560] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40289.560] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40289.560] (II) RADEON(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 -hsync +vsync (69.9 kHz e)
    [ 40294.610] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 40827.167] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 40827.235] (II) RADEON(0): EDID vendor "GSM", prod id 17152
    [ 40827.235] (II) RADEON(0): Using hsync ranges from config file
    [ 40827.235] (II) RADEON(0): Using vrefresh ranges from config file
    [ 40827.235] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 40827.235] (II) RADEON(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 40827.235] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "1024x768i"x0.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace +hsync +vsync (35.5 kHz e)
    [ 40827.235] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 40827.235] (II) RADEON(0): Mode

  • Dual booting win 7 and arch: cannot install grub to partition

    I have read the arch wiki page on dual booting and several other sources on line, but I am still struggling to get this to work.
    I am trying to dual boot arch and windows 7 on my lenovo ideapad s205. the machine comes with windows 7 pre-installed.
    I shrank the win 7 partition and added an extended partition with 3 logical partions for /boot, swap, and /.
    I am able to install and run arch by installing grub to the mbr. when I do this, though, I cannot boot windows. (the windows section of grub menu.lst is uncommented and points toward hda0,0. I have tried hda 0,1 as well).
    I have also tried to use the windows boot loader to load arch, as described in the arch wiki page on dual booting. The problem here is that, taking this approach, I should install grub to my /boot partition, but when I try to do this, the installer only allows me to install grub to sda or sdb (the usb stick).
    I have read that grub should be able to boot linux from a logical partition. Is this so?
    Is there something wrong with the arch installer that it is not giving me the option of installing to a partition rather than the mbr, or is this  a problem with my partition scheme, or something else?
    I am tempted to remove lenovo's recovery system, but on the other hand, I have already needed to use it several times while monkeying around with installing arch.
    Thanks for any help.
    UPDATE:
    I now have the laptop dual-booting win 7 and arch. My solution ( adapted from here: http://helms-deep.cable.nu/~rwh/blog/?p=177) was to:
    1. installed arch on the partitions I had created for it, but skipped the "install bootloader" stage.
    2. in win 7, I downloaded and installed EasyBCD and made an entry for arch in it. I checked the option to "Use EasyBCD's copy of GRUB"
    3. When I restarted, I got a grub error because the entry in grub's menu.lst was pointing at the wrong partitions for the kernel and root.
    4. So I went back into the arch live disk, mounted the boot partition and edited menu.lst.
    Now when I start the laptop, the windows boot loader starts and I can choose between win  7 and arch. when I select arch, grub4dos starts and gives me the option to start arch. this is not particularly elegant (nor is it fast), so I think this solution is less than ideal, but it does work.
    I'd be interestd in any thoughts about what went wrong and what a better solution would be.
    thanks.
    Last edited by ratchet (2011-10-10 19:09:16)

    ratchet wrote:II am able to install and run arch by installing grub to the mbr. when I do this, though, I cannot boot windows. (the windows section of grub menu.lst is uncommented and points toward hda0,0. I have tried hda 0,1 as well).
    Is this a typo in your post or how it was in menu.lst? Surely it should be hd0,0 and not hda0,0? The entry I have in my menu.lst is as follows:
    # (2) Windows
    title Windows
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    What was yours?
    Last edited by JHeaton (2011-10-10 20:18:22)

  • [SOLVED] Arch Linux install on Dell Inspiron N5110

    Hello people!
    I`m new to Arch, i installed it a while ago on my desktop PC and it works like a charm, so i want now to install it on my laptop.
    I`m wondering if any of you (hopefully) has installed it on a similar laptop, and if he/she can to give me some heads-up before i start the install.
    This is my system info:
    Product  Dell Inspiron N5110
    Intel(R) Core(TM) i5-2450M CPU @ 2.50GHz
    Total Physical Memory     6.00 GB
    Video Card - Intel(R) HD Graphics 3000
    Video Card - GeForce GT 525M
    Network Card - Intel(R) Centrino(R) Wireless-N 1030
    Mouse - Dell Touchpad
    I really appreciate any info, or suggestions regarding this.
    Thanks in advance.
    Last edited by bogz (2012-05-15 19:18:18)

    The process is very much the same as your desktop install. Just follow the Beginner's Guide and you should be fine. There are, however, a few things you may want to consider (and this applies to laptops in general, not to any specific model): https://wiki.archlinux.org/index.php/Laptop
    If it comes with an SSD, you should also read the wiki article on SSD's: https://wiki.archlinux.org/index.php/SSD

  • Official Arch Linux Install Guide needs edit

    Aloha,
    This line in the Official Arch Linux Install Guide
    Official Arch Linux Install Guide
    dd if=archlinux-XXX.img of=/dev/sdX
    Needs to be changed too
    dd if=archlinux-2010.05-{core|netinstall}-{i686|x86_64|dual}.iso of=/dev/sdx
    Mahalo

    Hum, well I don't know how to write a git patch. I guess it would be a good thing to learn though, but I have to go to bed now.
    Hum..., after further looking at the this forums section I guess I posted in a totally wrong place Live and learn.
    Last edited by hunterthomson (2010-05-26 13:16:47)

  • Computer freezes before BIOS after arch linux install

    This is my first time installing arch linux, I followed the beginners install guide word for word. However, after the install, my computer gets stuck before the BIOS. It identifies the RAM, GPU, and harddrive (all Diagnostic lights are ok on my MOBO). Before the install it booted fine, but now when I boot it up it wont go to the BIOS screen no matter how many times I press delete. However, when I remove the harddrive it boots to the arch linux install screen on my USB drive perfectly.
    I know it is not my hardware because I did many different tests (mem-test, swapped out harddrives, tried 1 stick of RAM in different slots, etc). More importantly, my harddrive is brand new so I know it isn't dead because I could partition it when I was installing arch linux.
    Computer specs:
    AMD Athlon 64 Processor 3700+
    DFI LANPARTY nf4-d
    ATI Radeon x800
    2 GB DDR RAM
    160 GB SSD
    I have no idea what the problem is, I must have screwed something up with the bootloader or something. Any help would be appreciated. Thanks.

    Try clearing the CMOS settings either by removing the motherboard battery for some minutes or by using the relevant jumper on the motherboard. Check the manual of your motherboard for details.
    Last edited by Foucault (2013-07-03 16:19:41)

  • NVIDIA graphic driver install

    Aight. I've got an Acer Aspire 5738G, with a Nvidia GF G105M graphic card.
    I have a fresh install of archlinux (cause the kernel upgrade was lethal, so i had to go from scratch).
    Kernel is now 2.6.32.
    I ve downloaded the Nvidia driver from their download section, and when i try to run the installer it says it cant find the kernel header in '/usr/src/linux-2.6.32-ARCH/include/linux/kernel.h' . Then i tried to find kernel.h with locate, and i found it in: '/usr/include/linux/kernel.h' .
    I tried to run the installer one more time, with the --kernel-source-path option, but still the same: it says:
    The kernel source path '/usr/include/linux/kernel.h' does not exist. eetc etc
    What do i do?

    wonder wrote:
    the version that you are downloading is the same as the one from repo? you can try out nvidia-beta from aur.
    i'm suggestion that rather than using your method betcause is better not to have files laying around that pacman doesn't have any clue about them.
    like i side note, to build external modules you need kernel26-headers like is told in the last news from the front page.
    Do you know how the nvidia driver (installed by nvidia installer) can be removed cleanly?
    Regards
    Nik

  • Trouble with a wired connection on my fresh Arch Linux Install

    I am a new Arch Linux user. I used to use Ubuntu exclusively, but I'm to the point where I can no longer stand a lot of the issues with the new development and Canonical. Anyways....
    I have a Dell Inspiron 1440 laptop with an RTL8110SC (Module R8169) Ethernet port. (Pardon me if my terminology is wrong; please correct me if it is so I can learn? ) During the install process with the CD that I made, I had no issues connecting to the Internet. However, whenever I boot into my install, there is no connection. I've tried pinging various web pages and nothing will happen. I know that my hardware is compatible, but I do not know what to do next. I've tried everything under the Wiki's Beginner's Guide and the Network Configuration Guide.
    I just realised after I wrote this top portion that it no longer is connecting via CD, either. Pinging is giving me errors about no packets being received.
    Please help me with this matter? I would love to start using Arch Linux!

    Ping is a very basic command that is fundamental to debugging networks at the lowest levels.
    ewaller@odin:~ 1002 %ping 8.8.8.8
    PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
    64 bytes from 8.8.8.8: icmp_seq=1 ttl=50 time=42.7 ms
    64 bytes from 8.8.8.8: icmp_seq=2 ttl=50 time=36.7 ms
    64 bytes from 8.8.8.8: icmp_seq=3 ttl=50 time=36.8 ms
    ^C
    --- 8.8.8.8 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 36.721/38.782/42.768/2.819 ms
    ewaller@odin:~ 1003 %
    What we can tell so far..
    You have an Ethernet Interface.
    You have an Ethernet Address.
    You cannot look up domain names (bad)
    We are trying to see if you can see other computers if you know their address.  This will tell us if it is a DNS or a routing problem
    Last edited by ewaller (2012-10-26 22:58:32)

  • Arch Linux install and management on multiple workstations

    Hello
    I've been asked to install and manage an installation of 20+ computers at my school. They will be dual-boot with Windows and Linux. Even though i've never used Arch, i chose it for the install because i've heard a lot of good about it. I ask for tips on installing and managing such an installation. All the computers and their disks are identical, and i wish all my systems to be identical as well. There is a separate server with LDAP to which i have no root access, but which holds all user accounts.
    Install:
    I probably can suffer installing all the systems manually. I'll dedicate one workstation and create an ftp mirror so that i may do a netinstall on the others -- is this an ok idea? Also, how can i setup hostnames? Can DHCP do this?
    Management:
    The computers will be randomly shut down and powered on as the users please. Perhaps i can boot them all on once a fortnight and use cssh (cluster ssh) to do a system update -- but maybe there is a better way? A local mirror of the packages seems wise. I don't think it's a good idea to create a diskless setup, since if all machines are powered on at once it will significantly decrease boot time and increase network usage, to the annoyance of the users.
    I ask for criticism of those ideas and additional hints.
    PS. I appreciate the joke of asking someone without a Linux installation what the output of a Linux command is:) (when registering to this forum)

    If I was in your position...
    Setup arch on one machine, from scratch to production ready, with the following in mind.
    -Decide what desktop environment and window manager(s) you want installed/want to support.
    -Which applications your users will need
    -Which privileges are required or groups your users will need to be in.
    -Install everything, and note the names of the packages, everything installed after the base install.
    Then make a simple setup sh script that calls pacman to install everything you need and check any settings/group memberships etc, checking the logs afterwords to make sure that there were no issues. You could use this to streamline setup on the rest, or just do what tomk said and clone it.
    I wouldn't wait more than a week between updates. You could probably setup a cron job to run pacman and accept the defaults. You should run this on a test machine before the rest though to insure nothing breaks; that happens occasionally.
    I would probably choose Gnome as the DE personally. Not that it is any better than the others, but it is what I am familiar with, and seemed a bit less cluttered than KDE last time I used it. Less clutter and easily changeable settings means less time fixing users' mistakes.
    You could setup your own local arch repo/mirror and just have the rest of the machines sync from that, it'd save a lot of bandwidth and make updates a bit faster.

  • Arch is installed but grubs seems to not be

    So i got a new pc today, it came with windows 7.
    I partitioned and took half of the hdd for arch and made its partitions there.
    All seemed to install well, but at the end, after i closed the last file you edit(that one about the boot), several errors came, i could not see them well because they disappeared quicly , but i could see "something could not be installed on /something/something/"
    I rebooted and widows started, not the grub.
    This is like what i did:
    Cut in half 1Tb drive
    made /dev/dsa{5,6,4} for root, boot and home
    I know its very few information,sorry.

    YamiFrankc wrote:
    i fucked it up :S, accidentally destroyed windows.
    ok, now, first i install windows, and after that i install arch, right?
    https://wiki.archlinux.org/index.php/Wi … _Dual_Boot
    According to that ^
    Yes, it's better to install Windows first, leaving room for Linux.

  • One more: Win 7 won't run after Arch 64b install

    Hi,
    Just got a new 2 drive PC.
    Partitioned drives, and then installed as follows:
    1. Win 7 (64b) on sda1 (+more NTFS partitions)
    2. Arch 64b (fully updated) on sdb1-/boot and sdb2 -/.
    GRUB (NOT version 2) installed on sda.
    While Win 7 appears in the (grub) menu, it will NOT load if selected.
    Please advise!
    Thanks!
    Michael Badt
    My disks partition scheme:
    fdisk -l /dev/sda
    Disk /dev/sda: 1500.3 GB, 1500301910016 bytes
    255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x000979f1
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *          63   153597464    76798701    7  HPFS/NTFS
    /dev/sda2       153597465   255995774    51199155   83  Linux
    /dev/sda3       255995775  2897515529  1320759877+   7  HPFS/NTFS
    /dev/sda4      2897515530  2930272064    16378267+   5  Extended
    /dev/sda5      2897515593  2915942084     9213246   82  Linux swap / Solaris
    /dev/sda6      2915942148  2930272064     7164958+  83  Linux
    [root@myhost miki]# fdisk -l /dev/sdb
    Disk /dev/sdb: 1500.3 GB, 1500301910016 bytes
    255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x0009e738
       Device Boot      Start         End      Blocks   Id  System
    /dev/sdb1              63       64259       32098+  83  Linux
    /dev/sdb2           64260    24643709    12289725   83  Linux
    /dev/sdb3        24643710  2328637814  1151997052+  83  Linux
    /dev/sdb4      2328637815  2930272064   300817125    5  Extended
    /dev/sdb5      2328637878  2779196804   225279463+   7  HPFS/NTFS
    /dev/sdb6      2779196868  2797623359     9213246    7  HPFS/NTFS
    /dev/sdb7      2797623423  2930272064    66324321   83  Linux
    ================================================
    my /etc/fstab
    # <file system>        <dir>         <type>    <options>          <dump> <pass>
    devpts                 /dev/pts      devpts    defaults            0      0
    shm                    /dev/shm      tmpfs     nodev,nosuid        0      0
    #/dev/cdrom             /media/cd   auto    ro,user,noauto,unhide   0      0
    #/dev/dvd               /media/dvd  auto    ro,user,noauto,unhide   0      0
    #/dev/fd0               /media/fl   auto    user,noauto             0      0
    /dev/sda1 windows ntfs-3g defaults 0 1
    /dev/sda2 linux_backup xfs defaults 0 1
    /dev/sda3 photos ntfs-3g defaults 0 1
    /dev/sda5 swap swap defaults 0 0
    /dev/sda6 /var reiserfs defaults 0 1
    /dev/sdb1 /boot ext2 defaults 0 1
    /dev/sdb2 / ext4 defaults 0 1
    /dev/sdb3 /home ext4 defaults 0 1
    /dev/sdb5 lr_cat ntfs-3g defaults 0 1
    /dev/sdb7 images_sda xfs defaults 0 1
    ==========================================================
    and, finally, my /boot/grub/menu.lst
    # (0) Arch Linux
    title  Arch Linux
    root   (hd1,0)
    kernel /vmlinuz26 root=/dev/sdb2 ro
    initrd /kernel26.img
    # (1) Arch Linux
    title  Arch Linux Fallback
    root   (hd1,0)
    kernel /vmlinuz26 root=/dev/sdb2 ro
    initrd /kernel26-fallback.img
    # (2) Windows
    title Windows
    rootnoverify (hd0,0)
    savedefault
    makeactive
    chainloader +1
    ===============================================

    mibadt wrote:
    Thanks,
    But:
    1. As can be seen my Windows is on the FIRST drive (sda)
    2. I'd rather not use Windows boot loader.
    Any more tips?
    Thanks
    You don't need to use the Windows bootloader, you only need to fool Windows into thinking it is the primary drive in the boot order, by adding:
    map (hd0) (hd1)
    map (hd1) (hd0)
    per the Wiki section I linked to.  Windows throws a fit when it knows it is not the 1st thing in the bootorder in the BIOS.

  • No wlan0 interface, fresh arch linux install.

    Hi there,
    I'v installed finally arch linux on my box, and everything is fine, i configured well my system (after reeding the arch wiki installation guide) and now i'm with a # (no gui off course).
    I was trying to set up the wireless interface but when I type ifconfig the wlan0 doesn't show up, only  eth0 and lo
    lspci | grep -i net
    --- ethernet --
    03:00.0 Network controller : Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
    uname - a
    Linux hostname 2.6.30-ARCH #1 SMP ...... i686
    ifconfig wlan0 up
    SIOSCSIFFLAGS: No such file or directory
    (this is obvious)
    The strange "thing" is that when i type ifconfig  (on the live cd), I see the wlan0 interface and this doesn't show up on the hdd install.
    What should I do?
    PS: i have only wireless connection, now posting from an macBook
    Last edited by r0b0t (2010-01-09 17:25:08)

    Did you install the firmware package?  It loads automatically during install but only goes to the hard drive during install if you select it in the list of packages.  The package is called 'iwlwifi-3945-ucode'.
    Also, if you do a pacman -Syu, you'll update to the 2.6.32.2 kernel which has a bug.  With some access points, it will disassociate when the 3945 power management puts the card to sleep.  To work around this, as root type 'iwconfig wlan0 power off'.  this should be the default behavior in the next kernel update.  If you stay with 2.6.30 the 3945 should work fine.
    Last edited by brianhanna (2010-01-09 17:54:22)

  • Arch linux install and setup questions

    Personally it seems a bit to cumbersome to have to setup xorg etc and is proving to be difficult in getting it to work right. Do they have any arch forks that just auto detect the xorg settings like some of the other distros?
    I can't see myself having to setup several of these boxes and doing these install steps one at a time for each one.
    It would seem arch could just run a script once installed that would auto sync, download xorg, and setup xorg at the same time.
    it would be no different that following each step in the wiki by hand, just via script

    itsmeh wrote:Yup it was just an idea , sure people can still do it manual but maybe have something built in to at least take care of the first few steps that most users are going to use
    That's the whole point with arch. It's all up to you. Arch doesn't suggest anything for you (exept what you need to get a working linux enviroment).
    This is the reason i installed arch. I wanted control over my inviromet and learn more about what's under the hood.

  • Need help with arch linux install!

    Hello, let me start off by telling you about the predicament I'm in at the moment. I've been trying to install arch linux on with a cd-drive that has been failing for a little over a year now, so you can already see where my problem starts!  The cd-drive, however will work with such cd's as Windows, Ubuntu, and Slackware, which I'm happy with. Yet, archlinux doesn't work so much.
    And now maybe my solution. I've got a usb cd drive, that I've had laying around that works well, just not well enough for my bios to be able to boot from; which is horrible I know. I've searched the bios for loading a usb cd drive and everything else, including google so I don't think I'm going to get anywhere with that one. Anyways what I'm thinking of doing is that when archlinux is in the terminal right before you type the "/arch/setup" command, I would like to know if there is any command that allows you to change the cd it boots the cd from to go right into the installation. I'm still working on easying my out of the newbie stage of linux at the moment, but I've never run into a command like that, that would help me out. Hopefully there is one though, because I would very much like to archlinux to work, so please respond! Right now I'm running elinks through the terminal right before you type "/arch/setup". Thanks!

    loosec wrote:
    So you get through the boot process just fine then on your old CD drive. The only thing you should have to do after that is to throw your CD into the USB CD drive and proceed with the installation. The installer should then ask you what CD drive you would like to use when you choose install from CD.
    Another way to do it would be to switch cd like above and then manually mount your /dev/[your_usb_cd_here] on /src. The installer then has to be pointed to this place as the source of your installation. To find out what your usb cd drive is called you should unplug it, then replug it and run: dmesg
    The mount command might also need to be shown that this is a cd so:
    mount -t iso9660 /dev/[usb_cd_device_name] /src
    should do the trick.
    If you really want to learn more of what the installer does (and fail installing a few times) you should also check out the command
    /arch/quickinstall
    If your Internet connection is up for it, it seems like you could just choose an FTP install instead.
    Goodluck!
    Once the CD is removed from the drive that it was booted from. the installation will not continue, as the arch install always goes back to the boot drive to continue read the neccessary information for the install. I do not think there is a way to fool the computer into booting from one cd drive and then continueing on with another. To do this you would have to tell the computer that you are switching drives.
    If you can boot up the CD kernel and get to where you type in /arch/setup then the next thing I would od is FTP install. That would limit your CD rom drie usage.
    There is also a way to install arch from within another distro, EVEN ANOTHER LIVECD! <-- this may be your best bet. Check the wiki, there is tons of information there.
    Last edited by rooloo (2008-08-16 12:32:00)

Maybe you are looking for

  • Premiere Pro CS5 - Media Encoder Crash when Exporting to MPEG-2

    System: Core i7 920 @ 3.8 Ghz Gigabyte X58A-UD3R 12GB DDR3 1600 External Sound Card - M-Audio ProFire 610 OS Drive - 2x300GB WD Raptors - Raid 0 Project Drives - 3x300 WD Raptor - Raid 0 Video Card - Geforce GTX 285 1GB Adobe Premiere Pro CS5 and Med

  • Oracle connection from remote server where oracle client is installed not happening.

    Hi  , I am facing problem today , that i am not able to reach oracle DB from other machine where i have installed Oracle clinet few months ago. Same was heppeing till yesterday. OS: Windows Version: 11G Oracle DB TNS: # tnsnames.ora Network Configura

  • Problem calling C# dll using JNI

    Hi, I'm trying to call C# functions from a JNI interface. I built a C++ DLL to link the Java and C# calls together, but I am always getting the same error. Calling the C# DLL directly from the C++ code (compiled as an application) does not cause this

  • Data sources

    hi, in rsa3 transaction i am checking the data source called 0re_2 but i am not getting any records this data source is for real estate management do we get records for this type of data sources in rsa3 please suggest me i will assign points

  • Auto increment pseudo column

    Hi, If I have a sql statement like "select e.name from employees e", how can i add a pesudo column which is auto incremented for each row fetched? So something like incr_column name 1 Jack 2 Michael 3 Freud Thank you