LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 12-13-2010, 02:01 PM   #1
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Rep: Reputation: 0
can't access machine after starting in runlevel 1


i'm trying to install drivers for an nvidia card.

i was unable to stop X after trying the following:
sudo /etc/init.d/kdm stop
sudo service kdm stop
sudo stop kdm

i had ssh'ed in, so there was no point in trying ctrl-alt-f1.

there was no /etc/inittab file, so i poked around, and found out that i could simply create one, and enter the following into it:

id:3:initdefault:

which would start the machine in runlevel three (to avoid starting X).

that didn't work, since (k)ubuntu apparently ignores the differences between runlevels 2-5.

so i entered the following into my newly created /etc/inittab:

id:1:initdefault:

and restarted the machine.

there was no screen output, and i could not ssh into the machine.

i took out the new graphics card, and plugged the monitor into the motherboard's vga outlet.

still no graphics on the monitor, and i can't ssh.

how do i restore it?

(and for extra points, how do i get my nvidia card to work?)
 
Old 12-13-2010, 03:18 PM   #2
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
First delete inittab, since it is not used in Ubuntu anymore and it may be even not parsed. The proper way of exiting Xorg is stoping kdm, gdm or any manager you have. What is outputted after giving these commands you tried to stop kdm?

Eventually you can just "pkill kdm" or "pkill Xorg". To start in single user mode (usually without X) you can also boot machine with "single" kernel parameter. But be aware that by default ssh not work in this mode.
 
Old 12-13-2010, 03:21 PM   #3
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
update

when i try to start the machine, a kubuntu splash screen (with five dots that are filled in one by one) is visible, but when it completes, the screen goes dark.

i assumed i would at this point be at the login prompt at startup, even though i could not see it, so i typed my username and password.

now, i have a blinking underscore at top left of the screen, but it doesn't respond to input.
 
Old 12-13-2010, 03:26 PM   #4
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
thanks, eselix, you posted while i was writing my update.

as soon as i can access the machine, the first thing i will do is indeed to delete the inittab file.

when i tried the obvious '/etc/init.d/kdm stop', the output was that this was deprecated and i should use 'sudo service kdm stop'.

when i tried this, i got an error message telling me to use 'sudo stop kdm'. when i tried that, there was no output.

finally, i checked the pid of kdm, and did kill -9 kdm. that removed the pid, but the nvidia-driver installer told me i still seemed to be running x. that's when i started mucking about with inittab.
 
Old 12-13-2010, 04:42 PM   #5
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
further update

i've now entered the bios and looked for ways to configure video. no such luck.

also, i pressed 'esc' during startup to enter the menu, and started the machine in recovery mode.

still, the monitor is dead, and i can't ssh.

i do have backup, and i could do a complete reinstall, but there are so many tweaks and configurations to get a smoothly working system that i would rather not.

any help is valued. please.
 
Old 12-13-2010, 06:05 PM   #6
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
removed inittab

i booted with a boot stick, and managed to remove the inittab file.

while logged in as ubuntu@ubuntu through the boot stick, the screen worked perfectly.

however, amazingly, when i reboot from the harddisk, i still can't access the machine at all; there is no screen output after the first text scrolls by.

also, i was unable to ssh in to my own account from either the ubuntu account or from another machine.

i'm getting pretty desperate. i need this machine.
 
Old 12-13-2010, 06:44 PM   #7
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Try to delete /etc/X11/xorg.conf. You must read logs from /var/log to known what is going on. Especially Xorg.0.log, daemon.log, messages.log, kern.log, syslog.
 
Old 12-13-2010, 08:59 PM   #8
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
/etc/X11/xorg.conf was empty. i deleted it anyway.

the xorg.failsafe.log and the kdm.log both told me that there was a segmentation fault at address (nil). i assume this is important?
 
Old 12-13-2010, 09:56 PM   #9
Kenny_Strawn
Senior Member
 
Registered: Feb 2010
Location: /usa/ca/orange_county/lake_forest
Distribution: ArchBang, Google Android 2.1 + Motoblur (on Motortola Flipside), Google Chrome OS (on Cr-48)
Posts: 1,791
Blog Entries: 62

Rep: Reputation: 56
Here's how to stop X after pressing Ctrl+Alt+F1:

Code:
sudo service gdm stop && sudo startx
This will (1) stop X and (2) restart it as root.
 
Old 12-14-2010, 04:26 AM   #10
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Can you post the whole log?
 
Old 12-14-2010, 04:41 AM   #11
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
Quote:
Originally Posted by memius View Post
id:1:initdefault:

and restarted the machine.

there was no screen output, and i could not ssh into the machine.
You won't be able to ssh in to system in runlevel 1 'cos all the networking services will be stopped by default.

Either you need to start the network service manually or move to other runlevels which have network services enabled.
 
Old 12-15-2010, 01:10 AM   #12
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
eselix: this is /var/log/Xorg.failsafe:

Code:
X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: "/var/log/Xorg.failsafe.log", Time: Mon Dec 13 22:15:27 2010
(++) Using config file: "/etc/X11/xorg.conf.failsafe"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Configured Monitor"
(**) |   |-->Device "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
        Entry deleted from font path.
(==) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/100dpi/:unscaled,
        /usr/share/fonts/X11/75dpi/:unscaled,
        /usr/share/fonts/X11/Type1,
        /usr/share/fonts/X11/100dpi,
        /usr/share/fonts/X11/75dpi,
        /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
        built-ins
(==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
(II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
(II) Loader magic: 0x7ca300
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.4
        X.Org Video Driver: 6.0
        X.Org XInput driver : 7.0
        X.Org Server Extension : 2.0
(--) using VT number 1

(--) PCI:*(0:1:5:0) 1002:9614:1043:834d ATI Technologies Inc Radeon HD 3300 Graphics rev 0, Mem @ 0xd0000000/268435456, 0xfbce0000/65536, 0xfbb00000/1048576, I/O @ 0x0000b000/256
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.13.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.1.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "fbdev"
(II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
(II) Module fbdev: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 0.4.1
        ABI class: X.Org Video Driver, version 6.0
(II) FBDEV: driver for framebuffer: fbdev
(II) Loading sub module "fbdevhw"
(II) LoadModule: "fbdevhw"
(II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so
(II) Module fbdevhw: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 0.0.2
        ABI class: X.Org Video Driver, version 6.0
(**) FBDEV(0): claimed PCI slot 1@0:5:0
(II) FBDEV(0): using default device
(II) FBDEV(0): Creating default Display subsection in Screen section
        "Default Screen" for depth/fbbpp 24/32
(==) FBDEV(0): Depth 24, (==) framebuffer bpp 32
(==) FBDEV(0): RGB weight 888
(==) FBDEV(0): Default visual is TrueColor
(==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
(II) FBDEV(0): hardware: radeondrmfb (video memory: 3072kB)
(II) FBDEV(0): checking modes against framebuffer device...
(II) FBDEV(0): checking modes against monitor...
(--) FBDEV(0): Virtual size is 1024x768 (pitch 1024)
(**) FBDEV(0):  Built-in mode "current"
(==) FBDEV(0): DPI set to (96, 96)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
(**) FBDEV(0): using shadow framebuffer
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules/libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 1.1.0
        ABI class: X.Org ANSI C Emulation, version 0.4
(==) Depth 24 pixmap format is 32 bpp
(==) FBDEV(0): Backing store disabled
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(EE) FBDEV(0): FBIOPUTCMAP: Invalid argument
(==) FBDEV(0): DPMS enabled
(==) RandR enabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
(II) config/udev: Adding input device Power Button (/dev/input/event1)
(**) Power Button: Applying InputClass "evdev keyboard catchall"
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
        compiled for 1.7.6, module version = 2.3.2
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 7.0
(**) Power Button: always reports core events
(**) Power Button: Device: "/dev/input/event1"
(II) Power Button: Found keys
(II) Power Button: Configuring as keyboard
(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "pc105"
(**) Option "xkb_layout" "us"
(**) Option "xkb_variant" "dvorak"
(**) Option "xkb_options" "lv3:ralt_switch"
(II) XKB: reuse xkmfile /var/lib/xkb/server-6F86FD73C5E4C040CF174C28CF7A029ECAC10E5B.xkm
(II) config/udev: Adding input device Power Button (/dev/input/event0)
(**) Power Button: Applying InputClass "evdev keyboard catchall"
(**) Power Button: always reports core events
(**) Power Button: Device: "/dev/input/event0"
(II) Power Button: Found keys
(II) Power Button: Configuring as keyboard
(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "pc105"
(**) Option "xkb_layout" "us"
(**) Option "xkb_variant" "dvorak"
(**) Option "xkb_options" "lv3:ralt_switch"
(II) config/udev: Adding input device Topre Corporation HHKB Professional (/dev/input/event3)
(**) Topre Corporation HHKB Professional: Applying InputClass "evdev keyboard catchall"
(**) Topre Corporation HHKB Professional: always reports core events
(**) Topre Corporation HHKB Professional: Device: "/dev/input/event3"
(II) Topre Corporation HHKB Professional: Found keys
(II) Topre Corporation HHKB Professional: Configuring as keyboard
(II) XINPUT: Adding extended input device "Topre Corporation HHKB Professional" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "pc105"
(**) Option "xkb_layout" "us"
(**) Option "xkb_variant" "dvorak"
(**) Option "xkb_options" "lv3:ralt_switch"
(II) config/udev: Adding input device LITEON Technology USB Multimedia Keyboard (/dev/input/event4)
(**) LITEON Technology USB Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
(**) LITEON Technology USB Multimedia Keyboard: always reports core events
(**) LITEON Technology USB Multimedia Keyboard: Device: "/dev/input/event4"
(II) LITEON Technology USB Multimedia Keyboard: Found keys
(II) LITEON Technology USB Multimedia Keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "LITEON Technology USB Multimedia Keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "pc105"
(**) Option "xkb_layout" "us"
(**) Option "xkb_variant" "dvorak"
(**) Option "xkb_options" "lv3:ralt_switch"
(II) config/udev: Adding input device Logitech USB RECEIVER (/dev/input/event5)
(**) Logitech USB RECEIVER: Applying InputClass "evdev pointer catchall"
(**) Logitech USB RECEIVER: always reports core events
(**) Logitech USB RECEIVER: Device: "/dev/input/event5"
(II) Logitech USB RECEIVER: Found 20 mouse buttons
(II) Logitech USB RECEIVER: Found scroll wheel(s)
(II) Logitech USB RECEIVER: Found relative axes
(II) Logitech USB RECEIVER: Found x and y relative axes
(II) Logitech USB RECEIVER: Configuring as mouse
(**) Logitech USB RECEIVER: YAxisMapping: buttons 4 and 5
(**) Logitech USB RECEIVER: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Logitech USB RECEIVER" (type: MOUSE)
(II) Logitech USB RECEIVER: initialized for relative axes.
(II) config/udev: Adding input device Logitech USB RECEIVER (/dev/input/mouse1)
(II) No input driver/identifier specified (ignoring)
(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/event2)
(**) Macintosh mouse button emulation: Applying InputClass "evdev pointer catchall"
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event2"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found relative axes
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(II) Macintosh mouse button emulation: initialized for relative axes.
(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/mouse0)
(II) No input driver/identifier specified (ignoring)
(II) Macintosh mouse button emulation: Close
(II) UnloadModule: "evdev"
(II) Logitech USB RECEIVER: Close
(II) UnloadModule: "evdev"
(II) LITEON Technology USB Multimedia Keyboard: Close
(II) UnloadModule: "evdev"
(II) Topre Corporation HHKB Professional: Close
(II) UnloadModule: "evdev"
(II) Power Button: Close
(II) UnloadModule: "evdev"
(II) Power Button: Close
(II) UnloadModule: "evdev"

Backtrace:
0: /usr/bin/X (xorg_backtrace+0x28) [0x4a33e8]
1: /usr/bin/X (0x400000+0x6574d) [0x46574d]
2: /lib/libpthread.so.0 (0x7f94ab8eb000+0xf8f0) [0x7f94ab8fa8f0]
3: /usr/bin/X (DamageUnregister+0x53) [0x4d7463]
4: /usr/lib/xorg/modules/libshadow.so (shadowRemove+0x33) [0x7f94a821a3c3]
5: /usr/lib/xorg/modules/libshadow.so (0x7f94a8219000+0x1884) [0x7f94a821a884]
6: /usr/bin/X (0x400000+0xa7979) [0x4a7979]
7: /usr/bin/X (0x400000+0x16869c) [0x56869c]
8: /usr/bin/X (0x400000+0x2624c) [0x42624c]
9: /lib/libc.so.6 (__libc_start_main+0xfd) [0x7f94aa5e2c4d]
10: /usr/bin/X (0x400000+0x25d59) [0x425d59]
Segmentation fault at address (nil)

Caught signal 11 (Segmentation fault). Server aborting

Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.failsafe.log" for additional information.

 ddxSigGiveUp: Closing log
 
Old 12-15-2010, 01:14 AM   #13
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
eselix: /var/log/kdm.log (only the last half):

Code:
 
7f754996c000-7f7549b6c000 ---p 00033000 08:01 3990897                    /usr/lib/libfontconfig.so.1.4.4
7f7549b6c000-7f7549b6d000 r--p 00033000 08:01 3990897                    /usr/lib/libfontconfig.so.1.4.4
7f7549b6d000-7f7549b6e000 rw-p 00034000 08:01 3990897                    /usr/lib/libfontconfig.so.1.4.4
7f7549b6e000-7f7549c49000 r-xp 00000000 08:01 32604187                   /lib/libglib-2.0.so.0.2400.1
7f7549c49000-7f7549e49000 ---p 000db000 08:01 32604187                   /lib/libglib-2.0.so.0.2400.1
7f7549e49000-7f7549e4a000 r--p 000db000 08:01 32604187                   /lib/libglib-2.0.so.0.2400.1
7f7549e4a000-7f7549e4b000 rw-p 000dc000 08:01 32604187                   /lib/libglib-2.0.so.0.2400.1
7f7549e4b000-7f7549e4c000 rw-p 00000000 00:00 0 
7f7549e4c000-7f7549e53000 r-xp 00000000 08:01 32604278                   /lib/librt-2.11.1.so
7f7549e53000-7f754a052000 ---p 00007000 08:01 32604278                   /lib/librt-2.11.1.so
7f754a052000-7f754a053000 r--p 00006000 08:01 32604278                   /lib/librt-2.11.1.so
7f754a053000-7f754a054000 rw-p 00007000 08:01 32604278                   /lib/librt-2.11.1.so
7f754a054000-7f754a058000 r-xp 00000000 08:01 3991977                    /usr/lib/libgthread-2.0.so.0.2400.1
7f754a058000-7f754a257000 ---p 00004000 08:01 3991977                    /usr/lib/libgthread-2.0.so.0.2400.1
7f754a257000-7f754a258000 r--p 00003000 08:01 3991977                    /usr/lib/libgthread-2.0.so.0.2400.1
7f754a258000-7f754a259000 rw-p 00004000 08:01 3991977                    /usr/lib/libgthread-2.0.so.0.2400.1
7f754a259000-7f754a279000 r-xp 00000000 08:01 3989802                    /usr/lib/liblzma.so.1.0.0
7f754a279000-7f754a478000 ---p 00020000 08:01 3989802                    /usr/lib/liblzma.so.1.0.0
7f754a478000-7f754a479000 r--p 0001f000 08:01 3989802                    /usr/lib/liblzma.so.1.0.0
7f754a479000-7f754a47a000 rw-p 00020000 08:01 3989802                    /usr/lib/liblzma.so.1.0.0
7f754a47a000-7f754a48a000 r-xp 00000000 08:01 32604210                   /lib/libbz2.so.1.0.4
7f754a48a000-7f754a689000 ---p 00010000 08:01 32604210                   /lib/libbz2.so.1.0.4
7f754a689000-7f754a68a000 r--p 0000f000 08:01 32604210                   /lib/libbz2.so.1.0.4
7f754a68a000-7f754a68b000 rw-p 00010000 08:01 32604210                   /lib/libbz2.so.1.0.4
7f754a68b000-7f754a6a1000 r-xp 00000000 08:01 32604299                   /lib/libz.so.1.2.3.3
7f754a6a1000-7f754a8a0000 ---p 00016000 08:01 32604299                   /lib/libz.so.1.2.3.3
7f754a8a0000-7f754a8a1000 r--p 00015000 08:01 32604299                   /lib/libz.so.1.2.3.3
7f754a8a1000-7f754a8a2000 rw-p 00016000 08:01 32604299                   /lib/libz.so.1.2.3.3
7f754a8a2000-7f754a9c9000 r-xp 00000000 08:01 53657826                   /usr/lib/libQtNetwork.so.4.6.2
7f754a9c9000-7f754abc9000 ---p 00127000 08:01 53657826                   /usr/lib/libQtNetwork.so.4.6.2
7f754abc9000-7f754abce000 r--p 00127000 08:01 53657826                   /usr/lib/libQtNetwork.so.4.6.2
7f754abce000-7f754abd0000 rw-p 0012c000 08:01 53657826                   /usr/lib/libQtNetwork.so.4.6.2
7f754abd0000-7f754abdf000 r-xp 00000000 08:01 3990976                    /usr/lib/libXi.so.6.1.0
7f754abdf000-7f754adde000 ---p 0000f000 08:01 3990976                    /usr/lib/libXi.so.6.1.0
7f754adde000-7f754addf000 r--p 0000e000 08:01 3990976                    /usr/lib/libXi.so.6.1.0
7f754addf000-7f754ade0000 rw-p 0000f000 08:01 3990976                    /usr/lib/libXi.so.6.1.0
7f754ade0000-7f754adf1000 r-xp 00000000 08:01 53658020                   /usr/lib/libXext.so.6.4.0
7f754adf1000-7f754aff0000 ---p 00011000 08:01 53658020                   /usr/lib/libXext.so.6.4.0
7f754aff0000-7f754aff1000 r--p 00010000 08:01 53658020                   /usr/lib/libXext.so.6.4.0
7f754aff1000-7f754aff2000 rw-p 00011000 08:01 53658020                   /usr/lib/libXext.so.6.4.0
7f754aff2000-7f754aff4000 r-xp 00000000 08:01 32604486                   /lib/libdl-2.11.1.so
7f754aff4000-7f754b1f4000 ---p 00002000 08:01 32604486                   /lib/libdl-2.11.1.so
7f754b1f4000-7f754b1f5000 r--p 00002000 08:01 32604486                   /lib/libdl-2.11.1.so
7f754b1f5000-7f754b1f6000 rw-p 00003000 08:01 32604486                   /lib/libdl-2.11.1.so
7f754b1f6000-7f754b211000 r-xp 00000000 08:01 53657968                   /usr/lib/libxcb.so.1.1.0
7f754b211000-7f754b410000 ---p 0001b000 08:01 53657968                   /usr/lib/libxcb.so.1.1.0
7f754b410000-7f754b411000 r--p 0001a000 08:01 53657968                   /usr/lib/libxcb.so.1.1.0
7f754b411000-7f754b412000 rw-p 0001b000 08:01 53657968                   /usr/lib/libxcb.so.1.1.0
7f754b412000-7f754b428000 r-xp 00000000 08:01 32604651                   /lib/libgcc_s.so.1
7f754b428000-7f754b627000 ---p 00016000 08:01 32604651                   /lib/libgcc_s.so.1
7f754b627000-7f754b628000 r--p 00015000 08:01 32604651                   /lib/libgcc_s.so.1
7f754b628000-7f754b629000 rw-p 00016000 08:01 32604651                   /lib/libgcc_s.so.1
7f754b629000-7f754b6ab000 r-xp 00000000 08:01 32604166                   /lib/libm-2.11.1.so
7f754b6ab000-7f754b8aa000 ---p 00082000 08:01 32604166                   /lib/libm-2.11.1.so
7f754b8aa000-7f754b8ab000 r--p 00081000 08:01 32604166                   /lib/libm-2.11.1.so
7f754b8ab000-7f754b8ac000 rw-p 00082000 08:01 32604166                   /lib/libm-2.11.1.so
7f754b8ac000-7f754b923000 r-xp 00000000 08:01 53657950                   /usr/lib/libQtDBus.so.4.6.2
7f754b923000-7f754bb23000 ---p 00077000 08:01 53657950                   /usr/lib/libQtDBus.so.4.6.2
7f754bb23000-7f754bb24000 r--p 00077000 08:01 53657950                   /usr/lib/libQtDBus.so.4.6.2
7f754bb24000-7f754bb25000 rw-p 00078000 08:01 53657950                   /usr/lib/libQtDBus.so.4.6.2
7f754bb25000-7f754bb2e000 r-xp 00000000 08:01 53658027                   /usr/lib/libXrender.so.1.3.0
7f754bb2e000-7f754bd2d000 ---p 00009000 08:01 53658027                   /usr/lib/libXrender.so.1.3.0
7f754bd2d000-7f754bd2e000 r--p 00008000 08:01 53658027                   /usr/lib/libXrender.so.1.3.0
7f754bd2e000-7f754bd2f000 rw-p 00009000 08:01 53658027                   /usr/lib/libXrender.so.1.3.0
7f754bd2f000-7f754bd34000 r-xp 00000000 08:01 53658013                   /usr/lib/libXfixes.so.3.1.0
7f754bd34000-7f754bf33000 ---p 00005000 08:01 53658013                   /usr/lib/libXfixes.so.3.1.0
7f754bf33000-7f754bf34000 r--p 00004000 08:01 53658013                   /usr/lib/libXfixes.so.3.1.0
7f754bf34000-7f754bf35000 rw-p 00005000 08:01 53658013                   /usr/lib/libXfixes.so.3.1.0
7f754bf35000-7f754bf3e000 r-xp 00000000 08:01 3991177                    /usr/lib/libXcursor.so.1.0.2
7f754bf3e000-7f754c13d000 ---p 00009000 08:01 3991177                    /usr/lib/libXcursor.so.1.0.2
7f754c13d000-7f754c13e000 r--p 00008000 08:01 3991177                    /usr/lib/libXcursor.so.1.0.2
7f754c13e000-7f754c13f000 rw-p 00009000 08:01 3991177                    /usr/lib/libXcursor.so.1.0.2
7f754c13f000-7f754c15f000 r-xp 00000000 08:01 3990860                    /usr/lib/libdbusmenu-qt.so.2.0.2
7f754c15f000-7f754c35f000 ---p 00020000 08:01 3990860                    /usr/lib/libdbusmenu-qt.so.2.0.2
7f754c35f000-7f754c360000 r--p 00020000 08:01 3990860                    /usr/lib/libdbusmenu-qt.so.2.0.2
7f754c360000-7f754c361000 rw-p 00021000 08:01 3990860                    /usr/lib/libdbusmenu-qt.so.2.0.2
7f754c361000-7f754c378000 r-xp 00000000 08:01 53658030                   /usr/lib/libICE.so.6.3.0
7f754c378000-7f754c577000 ---p 00017000 08:01 53658030                   /usr/lib/libICE.so.6.3.0
7f754c577000-7f754c578000 r--p 00016000 08:01 53658030                   /usr/lib/libICE.so.6.3.0
7f754c578000-7f754c579000 rw-p 00017000 08:01 53658030                   /usr/lib/libICE.so.6.3.0
7f754c579000-7f754c57c000 rw-p 00000000 00:00 0 
7f754c57c000-7f754c584000 r-xp 00000000 08:01 53657614                   /usr/lib/libSM.so.6.0.1
7f754c584000-7f754c783000 ---p 00008000 08:01 53657614                   /usr/lib/libSM.so.6.0.1
7f754c783000-7f754c784000 r--p 00007000 08:01 53657614                   /usr/lib/libSM.so.6.0.1
7f754c784000-7f754c785000 rw-p 00008000 08:01 53657614                   /usr/lib/libSM.so.6.0.1
7f754c785000-7f754c8ff000 r-xp 00000000 08:01 32604482                   /lib/libc-2.11.1.so
7f754c8ff000-7f754cafe000 ---p 0017a000 08:01 32604482                   /lib/libc-2.11.1.so
7f754cafe000-7f754cb02000 r--p 00179000 08:01 32604482                   /lib/libc-2.11.1.so
7f754cb02000-7f754cb03000 rw-p 0017d000 08:01 32604482                   /lib/libc-2.11.1.so
7f754cb03000-7f754cb08000 rw-p 00000000 00:00 0 
7f754cb08000-7f754cbfe000 r-xp 00000000 08:01 3989685                    /usr/lib/libstdc++.so.6.0.13
7f754cbfe000-7f754cdfe000 ---p 000f6000 08:01 3989685                    /usr/lib/libstdc++.so.6.0.13
7f754cdfe000-7f754ce05000 r--p 000f6000 08:01 3989685                    /usr/lib/libstdc++.so.6.0.13
7f754ce05000-7f754ce07000 rw-p 000fd000 08:01 3989685                    /usr/lib/libstdc++.so.6.0.13
7f754ce07000-7f754ce1c000 rw-p 00000000 00:00 0 
7f754ce1c000-7f754d86c000 r-xp 00000000 08:01 53657925                   /usr/lib/libQtGui.so.4.6.2
7f754d86c000-7f754da6b000 ---p 00a50000 08:01 53657925                   /usr/lib/libQtGui.so.4.6.2
7f754da6b000-7f754daaa000 r--p 00a4f000 08:01 53657925                   /usr/lib/libQtGui.so.4.6.2
7f754daaa000-7f754dab0000 rw-p 00a8e000 08:01 53657925                   /usr/lib/libQtGui.so.4.6.2
7f754dab0000-7f754dab3000 rw-p 00000000 00:00 0 
7f754dab3000-7f754db0b000 r-xp 00000000 08:01 53657840                   /usr/lib/libQtSvg.so.4.6.2
7f754db0b000-7f754dd0b000 ---p 00058000 08:01 53657840                   /usr/lib/libQtSvg.so.4.6.2
7f754dd0b000-7f754dd0d000 r--p 00058000 08:01 53657840                   /usr/lib/libQtSvg.so.4.6.2
7f754dd0d000-7f754dd0e000 rw-p 0005a000 08:01 53657840                   /usr/lib/libQtSvg.so.4.6.2
7f754dd0e000-7f754dd26000 r-xp 00000000 08:01 32604380                   /lib/libpthread-2.11.1.so
7f754dd26000-7f754df25000 ---p 00018000 08:01 32604380                   /lib/libpthread-2.11.1.so
7f754df25000-7f754df26000 r--p 00017000 08:01 32604380                   /lib/libpthread-2.11.1.so
7f754df26000-7f754df27000 rw-p 00018000 08:01 32604380                   /lib/libpthread-2.11.1.so
7f754df27000-7f754df2b000 rw-p 00000000 00:00 0 
7f754df2b000-7f754e1a1000 r-xp 00000000 08:01 53657973                   /usr/lib/libQtCore.so.4.6.2
7f754e1a1000-7f754e3a1000 ---p 00276000 08:01 53657973                   /usr/lib/libQtCore.so.4.6.2
7f754e3a1000-7f754e3ac000 r--p 00276000 08:01 53657973                   /usr/lib/libQtCore.so.4.6.2
7f754e3ac000-7f754e3ad000 rw-p 00281000 08:01 53657973                   /usr/lib/libQtCore.so.4.6.2
7f754e3ad000-7f754e3ae000 rw-p 00000000 00:00 0 
7f754e3ae000-7f754e63a000 r-xp 00000000 08:01 3990468                    /usr/lib/libkdecore.so.5.4.0
7f754e63a000-7f754e839000 ---p 0028c000 08:01 3990468                    /usr/lib/libkdecore.so.5.4.0
7f754e839000-7f754e848000 r--p 0028b000 08:01 3990468                    /usr/lib/libkdecore.so.5.4.0
7f754e848000-7f754e84e000 rw-p 0029a000 08:01 3990468                    /usr/lib/libkdecore.so.5.4.0
7f754e84e000-7f754e84f000 rw-p 00000000 00:00 0 
7f754e84f000-7f754e854000 r-xp 00000000 08:01 3991973                    /usr/lib/libXtst.so.6.1.0
7f754e854000-7f754ea54000 ---p 00005000 08:01 3991973                    /usr/lib/libXtst.so.6.1.0
7f754ea54000-7f754ea55000 r--p 00005000 08:01 3991973                    /usr/lib/libXtst.so.6.1.0
7f754ea55000-7f754ea56000 rw-p 00006000 08:01 3991973                    /usr/lib/libXtst.so.6.1.0
7f754ea56000-7f754eb87000 r-xp 00000000 08:01 53658000                   /usr/lib/libX11.so.6.3.0
7f754eb87000-7f754ed87000 ---p 00131000 08:01 53658000                   /usr/lib/libX11.so.6.3.0
7f754ed87000-7f754ed88000 r--p 00131000 08:01 53658000                   /usr/lib/libX11.so.6.3.0
7f754ed88000-7f754ed8c000 rw-p 00132000 08:01 53658000                   /usr/lib/libX11.so.6.3.0
7f754ed8c000-7f754edd1000 r-xp 00000000 08:01 53657953                   /usr/lib/libQtXml.so.4.6.2
7f754edd1000-7f754efd1000 ---p 00045000 08:01 53657953                   /usr/lib/libQtXml.so.4.6.2
7f754efd1000-7f754efd3000 r--p 00045000 08:01 53657953                   /usr/lib/libQtXml.so.4.6.2
7f754efd3000-7f754efd4000 rw-p 00047000 08:01 53657953                   /usr/lib/libQtXml.so.4.6.2
7f754efd4000-7f754f3ea000 r-xp 00000000 08:01 3991245                    /usr/lib/libkdeui.so.5.4.0
7f754f3ea000-7f754f5ea000 ---p 00416000 08:01 3991245                    /usr/lib/libkdeui.so.5.4.0
7f754f5ea000-7f754f60f000 r--p 00416000 08:01 3991245                    /usr/lib/libkdeui.so.5.4.0
7f754f60f000-7f754f61b000 rw-p 0043b000 08:01 3991245                    /usr/lib/libkdeui.so.5.4.0
7f754f61b000-7f754f61c000 rw-p 00000000 00:00 0 
7f754f61c000-7f754f63c000 r-xp 00000000 08:01 32604250                   /lib/ld-2.11.1.so
7f754f63c000-7f754f640000 r--s 00000000 08:01 29632580                   /var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-le64.cache-3
7f754f640000-7f754f649000 r--s 00000000 08:01 29632563                   /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le64.cache-3
7f754f649000-7f754f655000 r--s 00000000 08:01 29632561                   /var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-le64.cache-3
7f754f655000-7f754f665000 r--s 00000000 08:01 29631275                   /var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-le64.cache-3
7f754f665000-7f754f668000 r--s 00000000 08:01 29632558                   /var/cache/fontconfig/d60319d88cac85ba9e1a07bd06cfbb8c-le64.cache-3
7f754f668000-7f754f66b000 r--s 00000000 08:01 29632557                   /var/cache/fontconfig/ddd4086aec35a5275babba44bb759c3c-le64.cache-3
7f754f66b000-7f754f66c000 r--s 00000000 08:01 29632556                   /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-le64.cache-3
7f754f66c000-7f754f676000 r--s 00000000 08:01 29632545                   /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le64.cache-3
7f754f676000-7f754f67d000 r--s 00000000 08:01 29632543                   /var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-le64.cache-3
7f754f67d000-7f754f690000 r--s 00000000 08:01 29632519                   /var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-le64.cache-3
7f754f690000-7f754f695000 r--s 00000000 08:01 29630673                   /var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-le64.cache-3
7f754f695000-7f754f6a9000 r--s 00000000 08:01 29632533                   /var/cache/fontconfig/865f88548240fee46819705c6468c165-le64.cache-3
7f754f6a9000-7f754f6e8000 r--p 00000000 08:01 4063243                    /usr/lib/locale/en_DK.utf8/LC_CTYPE
7f754f6e8000-7f754f806000 r--p 00000000 08:01 4063244                    /usr/lib/locale/en_DK.utf8/LC_COLLATE
7f754f806000-7f754f817000 rw-p 00000000 00:00 0 
7f754f817000-7f754f818000 r--s 00000000 08:01 29632582                   /var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-le64.cache-3
7f754f818000-7f754f819000 r--s 00000000 08:01 29632579                   /var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-le64.cache-3
7f754f819000-7f754f81a000 r--s 00000000 08:01 29632578                   /var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le64.cache-3
7f754f81a000-7f754f81b000 r--s 00000000 08:01 29632577                   /var/cache/fontconfig/6a53c69dea097a2d716e069445527da8-le64.cache-3
7f754f81b000-7f754f820000 r--s 00000000 08:01 29632576                   /var/cache/fontconfig/062808c12e6e608270f93bb230aed730-le64.cache-3
7f754f820000-7f754f826000 r--s 00000000 08:01 29632575                   /var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-le64.cache-3
7f754f826000-7f754f827000 r--p 00000000 08:01 4063304                    /usr/lib/locale/en_DK.utf8/LC_NUMERIC
7f754f827000-7f754f828000 r--p 00000000 08:01 4063336                    /usr/lib/locale/en_DK.utf8/LC_TIME
7f754f828000-7f754f829000 r--p 00000000 08:01 4063351                    /usr/lib/locale/en_DK.utf8/LC_MONETARY
7f754f829000-7f754f82a000 r--p 00000000 08:01 4063352                    /usr/lib/locale/en_DK.utf8/LC_MESSAGES/SYS_LC_MESSAGES
7f754f82a000-7f754f82b000 r--p 00000000 08:01 4063375                    /usr/lib/locale/en_DK.utf8/LC_PAPER
7f754f82b000-7f754f82c000 r--p 00000000 08:01 4063376                    /usr/lib/locale/en_DK.utf8/LC_NAME
7f754f82c000-7f754f82d000 r--p 00000000 08:01 4063353                    /usr/lib/locale/en_DK.utf8/LC_ADDRESS
7f754f82d000-7f754f82e000 r--p 00000000 08:01 4063354                    /usr/lib/locale/en_DK.utf8/LC_TELEPHONE
7f754f82e000-7f754f82f000 r--p 00000000 08:01 4063379                    /usr/lib/locale/en_DK.utf8/LC_MEASUREMENT
7f754f82f000-7f754f836000 r--s 00000000 08:01 4007154                    /usr/lib/gconv/gconv-modules.cache
7f754f836000-7f754f837000 r--p 00000000 08:01 4063355                    /usr/lib/locale/en_DK.utf8/LC_IDENTIFICATION
7f754f837000-7f754f83b000 rw-p 00000000 00:00 0 
7f754f83b000-7f754f83c000 r--p 0001f000 08:01 32604250                   /lib/ld-2.11.1.so
7f754f83c000-7f754f83d000 rw-p 00020000 08:01 32604250                   /lib/ld-2.11.1.so
7f754f83d000-7f754f83e000 rw-p 00000000 00:00 0 
7fff8eb8f000-7fff8eba4000 rw-p 00000000 00:00 0                          [stack]
7fff8ebff000-7fff8ec00000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
KCrash: Application 'kdmgreet' crashing...

Fatal server error:
Server is already active for display 0
        If this server is no longer running, remove /tmp/.X0-lock
        and start again.


Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 

 ddxSigGiveUp: Closing log
/etc/gdm/failsafeXServer: line 141: /var/log/gdm/failsafe.log: No such file or directory
Warning:  Cannot write to /var/log/gdm/failsafe.log
xinit /etc/gdm/failsafeXinit /etc/X11/xorg.conf.failsafe -- /usr/bin/X  -br -once -config /etc/X11/xorg.conf.failsafe -logfile /var/log/Xorg.failsafe.log


Fatal server error:
Server is already active for display 0
        If this server is no longer running, remove /tmp/.X0-lock
        and start again.


Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 

 ddxSigGiveUp: Closing log

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 18:48:50 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
resize called 1920 1080
QFont::fromString: Invalid description 'Serif,20,5,0,50,0'
QFont::fromString: Invalid description 'Sans Serif,10,5,0,50,0'
QFont::fromString: Invalid description 'Sans Serif,10,5,0,75,0'
KCrash: Application 'kdmgreet' crashing...
Unable to start Dr. Konqi

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 18:51:36 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
resize called 1920 1080
QFont::fromString: Invalid description 'Serif,20,5,0,50,0'
QFont::fromString: Invalid description 'Sans Serif,10,5,0,50,0'
QFont::fromString: Invalid description 'Sans Serif,10,5,0,75,0'

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 18:58:19 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(EE) open /dev/fb0: No such file or directory

Backtrace:
0: /usr/bin/X (xorg_backtrace+0x28) [0x4a33e8]
1: /usr/bin/X (0x400000+0x6574d) [0x46574d]
2: /lib/libpthread.so.0 (0x7ff3597f4000+0xf8f0) [0x7ff3598038f0]
3: /usr/bin/X (xf86InitViewport+0x4b) [0x52496b]
4: /usr/bin/X (InitOutput+0xb2d) [0x47412d]
5: /usr/bin/X (0x400000+0x26005) [0x426005]
6: /lib/libc.so.6 (__libc_start_main+0xfd) [0x7ff3584ebc4d]
7: /usr/bin/X (0x400000+0x25d59) [0x425d59]
Segmentation fault at address 0x24

Caught signal 11 (Segmentation fault). Server aborting

Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

 ddxSigGiveUp: Closing log
/etc/gdm/failsafeXServer: line 141: /var/log/gdm/failsafe.log: No such file or directory
Warning:  Cannot write to /var/log/gdm/failsafe.log
xinit /etc/gdm/failsafeXinit /etc/X11/xorg.conf.failsafe -- /usr/bin/X  -br -once -config /etc/X11/xorg.conf.failsafe -logfile /var/log/Xorg.failsafe.log


X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: "/var/log/Xorg.failsafe.log", Time: Mon Dec 13 18:58:20 2010
(++) Using config file: "/etc/X11/xorg.conf.failsafe"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(EE) VESA: Kernel modesetting driver in use, refusing to load
(EE) No devices detected.

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.failsafe.log" for additional information.

 ddxSigGiveUp: Closing log

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 20:50:46 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(II) [KMS] Kernel modesetting enabled.
 ddxSigGiveUp: Closing log

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 22:09:57 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(II) [KMS] Kernel modesetting enabled.
 ddxSigGiveUp: Closing log

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 23:31:54 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(II) [KMS] Kernel modesetting enabled.

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux box 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 10:14:11 UTC 2010 x86_64
Kernel command line: root=UUID=8dacbbb8-01d7-4894-ae1c-b2c2f092e0a0 ro quiet splash 
Build Date: 10 November 2010  11:25:53AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Dec 13 23:34:48 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/usr/lib/X11/xorg.conf.d"
(II) [KMS] Kernel modesetting enabled.
 
Old 12-15-2010, 07:12 PM   #14
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Quote:
Originally Posted by memius View Post
i booted with a boot stick, and managed to remove the inittab file. [...] however, amazingly, when i reboot from the harddisk, i still can't access the machine at all;
Are you sure, you deleted the proper inittab file: from your mounted hard disk and not from usb stick?

If yes, boot from stick and chroot to your old system, then try to install NVIDIA drivers.

If after that the screen still be dark, maybe reinstalling Xorg will help.
 
Old 12-16-2010, 08:29 PM   #15
memius
LQ Newbie
 
Registered: Sep 2007
Posts: 24

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by eSelix View Post
Are you sure, you deleted the proper inittab file: from your mounted hard disk and not from usb stick?
yes. i sudo mounted /dev/sda1 and removed /etc/inittab from there. and yes, i verified that /dev/sda1 is really my harddisk.

Quote:
If yes, boot from stick and chroot to your old system, then try to install NVIDIA drivers.
apparently, ctrl-alt-f1 doesn't work on my system at all, but 'sudo kdm stop' worked when i booted with the stick, and i finally got a non-X terminal. alas, the nvidia-installer script (NVIDIA-Linux-x86_64-260.19.29.run) did not work. i was told that there was no nvidia card in my machine (there is one), that the nvidia pre-install script failed, that there was no /proc/version file, and that the installer was unable to find the kernel source tree.

Quote:
If after that the screen still be dark, maybe reinstalling Xorg will help.
i tried 'sudo aptitude remove xorg', which worked. then i reinstalled it, which also worked. however, screen is still black on startup, with blinking, unresponsive underscore prompt in the upper left corner.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems starting runlevel 3 , redhat 7.3, "no more processes left in this runlevel" kiyoshi Linux - Software 1 06-25-2009 05:11 AM
Not starting in runlevel 5 Fedora Core 9 smecherel Linux - Newbie 3 06-20-2008 04:52 PM
starting a proxy at runlevel 3 piforever Fedora 2 12-19-2005 11:32 AM
Services not starting in runlevel 3 JesusAddict3791 Linux - Newbie 4 04-26-2005 12:49 AM
Starting Blackbox from runlevel 3 Thrasher Linux - General 3 01-13-2004 05:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 07:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration