LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices


Reply
  Search this Thread
Old 02-12-2004, 09:16 PM   #1
TamLe
LQ Newbie
 
Registered: Feb 2004
Location: HCMC-VietNam
Posts: 7

Rep: Reputation: 0
Couldn't start X server after update kernel


After updated to 2.4.24 on my RedHat 9, I couldn't bring up login GUI as normal??? When compiled kernel, I use xconfig and load the old kernel config. Is there any config file should I backup before update? How can I start up with login GUI as normal?

Thanks,

TT
 
Old 02-13-2004, 09:18 AM   #2
Rounan
Member
 
Registered: Jun 2003
Location: Ontario
Distribution: Ubuntu, Gentoo, Debian
Posts: 416

Rep: Reputation: 30
The upgrade may have nixed drivers or other modules...

Before we can help, we need to see:
lsmod
dmesg
/etc/X11/XFree86.log
^-- might not be the exact name. might also be in /var. Haven't got X installed on my box yet so I can't check if you can't find the file, type "startx" and post what it displays.

Basically, we need to know what errors you're getting. Not being able to start X can be caused by a bunch of things.
Posting your hardware configuration, particularly video card and AGP bus would also help.


--Rounan
 
Old 02-13-2004, 10:31 PM   #3
benjithegreat98
Senior Member
 
Registered: Dec 2003
Location: Shelbyville, TN, USA
Distribution: Fedora Core, CentOS
Posts: 1,019

Rep: Reputation: 45
TamLe, if you are using nvida drivers that you installed you will have to re-install some new ones. Nvidia has 2.6.x compliant drivers on their website.
 
Old 02-15-2004, 03:17 AM   #4
TamLe
LQ Newbie
 
Registered: Feb 2004
Location: HCMC-VietNam
Posts: 7

Original Poster
Rep: Reputation: 0
Smile

I used onboard i815 chipset . I'll try , and ... hopes it work
Thanks for your info!

TT
 
Old 02-16-2004, 09:32 PM   #5
TamLe
LQ Newbie
 
Registered: Feb 2004
Location: HCMC-VietNam
Posts: 7

Original Poster
Rep: Reputation: 0
Question

Hey man, i'm still no luck! *sigh*

To Rounan!

1\ My hardware list:
P3 800 (L2 cache 256Kb)
MB 815E
graphic card: onboard i815
sound onboard
ram 512
1 SCSI HDD & 1 IDE (boot from SCSI)
Adaptec 2940 U2W card

2\ lsmod:
return my hardware like SCSI, 3C95x, .... but I have no name of my i815 chipset (graphic card). BTW in column named "Not tained" said " (auto clean) " ???? What does that mean?

3\ after typed "startx" , the monitor becomes black , then I "Ctrl + Alt +F1" to bring text mode again , I got error report from X server:
" XIO : fatal IO error 104 (Connection reset by peer) on X server ":0.0" after 0 request (0 known ) with 0 event remaining " . The system still works: cp , mv. .... but couldnt "startx" only!

4\ my XF86Config file: # vim /etc/X11/XF86Config
List all hardware: monitor name, refresh rate, videoram , depth, chipset .... I think the config file is OK ( ???? )

5\ the way I compiled kernel:
make dep
make clean
make xconfig
Then I load the old config file, in DivicesSignature (or similar to ) : yes to i815 (from the old config file) , but I did answer "y" to ext3 in FileSystem section (the old file said "m" _ module )
make bzImage
make modules
make modules_install
make install
I have no error at compiling.

Reboot then I select new kernel ( 2.4.24 ) from grub boot menu. Then ..... couldnt start X server again !

I hope that these info may give you enough info to help me out!

Thanks for your ideas!

TT
 
Old 02-17-2004, 07:45 AM   #6
Rounan
Member
 
Registered: Jun 2003
Location: Ontario
Distribution: Ubuntu, Gentoo, Debian
Posts: 416

Rep: Reputation: 30
So you've got i815 compiled directly into the kernel? VERY strange...
if it's included in the kernel, it isn't bad for it not to appear in lsmod - it shouldn't. Did you have it compiled direct, or as a module under your last kernel?

What does the "driver" field in the "device" section of XFree86-4.conf say?

...

Google "fatal IO error 104"?

I'm at a loss.

--Rounan
 
Old 02-19-2004, 01:13 AM   #7
TamLe
LQ Newbie
 
Registered: Feb 2004
Location: HCMC-VietNam
Posts: 7

Original Poster
Rep: Reputation: 0
I did compile i815 into kernel
In Character divices:
/dev/agpgart set to module
Intel440BX/LX/GX and i815/i820... set to yes (compile into kernel )
Intel i810/i815/i830 (onboard) supports set to yes (compile into kernel )

Part of my XF86Config (at /etc/X11)
Section "Device"
Identifier "Videocard0"
Driver "i810"
VendorName "Videocard vendor"
BoardName "Intel 815"
VideoRam 16384
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

And part of my XFree86.0.log (at /var/log/)
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
i810e, i815, i830M, 845G, 852GM/855GM, 865G
(II) Primary Device is: PCI 00:02:0
(--) Assigning device section with no busID to primary device
(--) Chipset i815 found

Could you help me out?

TT
 
Old 02-19-2004, 07:59 AM   #8
Rounan
Member
 
Registered: Jun 2003
Location: Ontario
Distribution: Ubuntu, Gentoo, Debian
Posts: 416

Rep: Reputation: 30
Try changing
Driver "i810"
to
Driver "i815"

... but first make sure that the driver exists - I have a feeling i810 might be the one used for 810 or 815 chipsets. All I can think of though. This has to be a driver issue on some level, but from what you've told me it looks like everything should be fine.

Also, look here: http://en.tldp.org/HOWTO/HOWTO-INDEX/apps.html#GUIXWIN
for a guide specific to the i810 chipset.

--Rounan
 
Old 02-22-2004, 08:35 PM   #9
TamLe
LQ Newbie
 
Registered: Feb 2004
Location: HCMC-VietNam
Posts: 7

Original Poster
Rep: Reputation: 0
Thumbs up

In my system, the i815 driver doesnt exist ! I'll try in another time.

Thank you, Rounan!

TT
 
  


Reply



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
linux wont start after kernel update avinashtn Linux - Software 3 03-28-2005 12:45 PM
Upgraded Kernel - Now X Server Won't Start - No GUI Rexversusu Linux - Software 9 08-21-2004 06:42 AM
Can't start GUI after Kernel Update Fe98 Linux - Hardware 18 06-14-2004 02:05 PM
Can't start X server - kernel 2.6.4.1-302 l2g Red Hat 4 04-07-2004 04:14 AM
Libranet. Installing drivers/Kernel update. Were do I start? Linuxiscomplex Libranet 13 11-10-2003 11:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat

All times are GMT -5. The time now is 08:44 PM.

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