Failed to start the X server (your graphical user interface)

  • zillah
  • Student
  • Student
  • No Avatar
  • Joined: May 04, 2005
  • Posts: 77
  • Status: Offline

Post December 23rd, 2007, 11:12 am

Quote:
What graphics card do you have?

It is built-in on the laptop Toshiba called : Mobile Intel(R) 945G Express Chipset amily
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post December 23rd, 2007, 11:12 am

  • this213
  • Guru
  • Guru
  • User avatar
  • Joined: Mar 01, 2004
  • Posts: 1242
  • Loc: ./
  • Status: Offline

Post December 23rd, 2007, 12:58 pm

what does your VideoCard section look like? Did you remove that package (xorg-x11-drv-amd)? Install the 915resolution package as well.
http://www.disabo.com
  • zillah
  • Student
  • Student
  • No Avatar
  • Joined: May 04, 2005
  • Posts: 77
  • Status: Offline

Post December 23rd, 2007, 9:42 pm

Quote:
what does your VideoCard section look like?

I did not get what you meant.

Quote:
Did you remove that package (xorg-x11-drv-amd)?

Output for
Code: [ Select ]
yum remove xorg-x11-drv-amd

Quote:
No match for argument: xorg-x11-drv-amd
No packages marked for removal.



Output for
Code: [ Select ]
rpm -qa | grep xorg-x11-drv-*

Quote:
xorg-x11-drv-evdov-1.1.2-3.fc7
xorg-x11-drv-void-1.1.0-4.fc7
xorg-x11-drv-keyboard-1.1.0-3.fc7
xorg-x11-drv-vesa-1.3.0-8.fc7
xorg-x11-drv-mouse-1.2.1-2.fc7
  • this213
  • Guru
  • Guru
  • User avatar
  • Joined: Mar 01, 2004
  • Posts: 1242
  • Loc: ./
  • Status: Offline

Post December 24th, 2007, 8:04 am

This is my VideoCard section, though it's for an nVidia card:
Code: [ Select ]
Section "Device"
    Identifier "Videocard0"
    Driver   "nvidia"
    Option   "BackStoring" "true"
    Option   "ConnectToAcpid" "false"
    Option   "DamageEvents" "true"
    Option   "TripleBuffer" "false"
    Option   "RenderAccel" "true"
    Option   "AddARGBGLXVisuals" "True"
EndSection
  1. Section "Device"
  2.     Identifier "Videocard0"
  3.     Driver   "nvidia"
  4.     Option   "BackStoring" "true"
  5.     Option   "ConnectToAcpid" "false"
  6.     Option   "DamageEvents" "true"
  7.     Option   "TripleBuffer" "false"
  8.     Option   "RenderAccel" "true"
  9.     Option   "AddARGBGLXVisuals" "True"
  10. EndSection

Here's one for a machine with an SIS card:
Code: [ Select ]
Section "Device"
    Identifier "Videocard0"
    Driver   "sis"
EndSection
  1. Section "Device"
  2.     Identifier "Videocard0"
  3.     Driver   "sis"
  4. EndSection


What chipset do you have? The following will give a good indication:
Code: [ Select ]
lspci | grep "Host Bridge"

If this returns AMD anything, you probably do want the drv-amd package installed. For some reason, your X configuration is looking for it (ztv). It's possible that I wrongly assumed it was erroring on that because of a problem with the module rather than a requirement for it (though it seems odd to me that X would be dying instead of using default modules).

Is this a laptop? If so, what model. There are numerous bug reports on Fedora 7 running on various laptops. An upgrade to Fedora 8 may actually be your best answer.
http://www.disabo.com
  • AnarchY SI
  • Web Master
  • Web Master
  • User avatar
  • Joined: Oct 30, 2004
  • Posts: 2521
  • Loc: /usr/src/MI
  • Status: Offline

Post December 24th, 2007, 11:09 am

if the xorg.conf file was modified there should be a backup inside /etc/X11..
if you enter the command
Code: [ Select ]
ls -l /etc/X11
it should show you the files in that folder and show you what date they were created. look to see if theres some backup file in that folder, which may be ~xorg.conf or xorg.conf.bak (something of the sort). if there is an old xorg.conf file, you could try replacing the current one with the old one ? which you need root privileges for so..
Code: [ Select ]
su
<enter your root password>
mv /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK122407  (or whatever name format you prefer for backups :])
(this next file is going to be the 'old'/'backup' file you found)
cp /etc/X11/xorg.conf.bak /etc/X11/xorg.conf
exit
startx
  1. su
  2. <enter your root password>
  3. mv /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK122407  (or whatever name format you prefer for backups :])
  4. (this next file is going to be the 'old'/'backup' file you found)
  5. cp /etc/X11/xorg.conf.bak /etc/X11/xorg.conf
  6. exit
  7. startx


i did a little search about the graphics driver and stumbled across this:
Quote:
Note: If you have a 945 or older graphics controller, your distribution will already have the right drivers included.

http://intellinuxgraphics.org/download.html

hope this helps :]
Image
"In a world without walls and fences, who needs Windows and Gates?"
  • zillah
  • Student
  • Student
  • No Avatar
  • Joined: May 04, 2005
  • Posts: 77
  • Status: Offline

Post December 24th, 2007, 11:26 am

Quote:
look to see if theres some backup file in that folder, which may be ~xorg.conf or xorg.conf.bak (something of the sort).

Unfortunatly there are no such files.
  • AnarchY SI
  • Web Master
  • Web Master
  • User avatar
  • Joined: Oct 30, 2004
  • Posts: 2521
  • Loc: /usr/src/MI
  • Status: Offline

Post December 24th, 2007, 8:03 pm

damn. you should be able to generate a new file.. i believe, the command would be (needed to run with root privileges) Xorg --configure
see what that does for ya
Image
"In a world without walls and fences, who needs Windows and Gates?"
  • zillah
  • Student
  • Student
  • No Avatar
  • Joined: May 04, 2005
  • Posts: 77
  • Status: Offline

Post December 24th, 2007, 10:44 pm

Quote:
damn. you should be able to generate a new file..

Thanks AnarchY SI for your and others who tried to find out where is the problem.
I have been struggling with this problem since 11-12, therefore today I killed the cat and reinstalled FC7.[/quote]
  • AnarchY SI
  • Web Master
  • Web Master
  • User avatar
  • Joined: Oct 30, 2004
  • Posts: 2521
  • Loc: /usr/src/MI
  • Status: Offline

Post December 25th, 2007, 1:44 pm

no problem :]
just as long as it works i guess ^_^ lol
feel free to post back with any more questions
Image
"In a world without walls and fences, who needs Windows and Gates?"

Post Information

  • Total Posts in this topic: 24 posts
  • Users browsing this forum: No registered users and 46 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
cron
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.