LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 08-18-2006, 06:58 AM   #1
linux_guy
LQ Newbie
 
Registered: Aug 2006
Posts: 9

Rep: Reputation: 0
problems with Xorg-x11 package after kernel upgrade


Hi ,


This is my first post on this forum. I have system level
programming experience on Nonstop platform. I am trying to get insight into linux OS


I was trying to install systemtap rpm. For which I required three rpms.

1. Kernel
2. Kernel-debuginfo
3. kernel-devel

But, then I had a kernel version kernel-2.6.11-1.1369_FC4.i586.rpm for which kernel-debuginfo RPM was not available. So i upgraded the kernel rpm to kernel-2.6.17-1.2143_FC4.i686.rpm . Now this kernel installation did not show any dependency issues.

When i boot the kernel with runlevel 5. X windows system doesnot start and after the initial kernel boot, screen blanks out.

So I tried booting the system with runlevel 3. Boot happened successfully and I could log into the system.
but again when i tried starting X windows, screen blanks out.

I dont know what is the problem here with X windows. I am not able to figure it out. Can anybody please solve this issue.

- adil
 
Old 08-18-2006, 08:45 AM   #2
homey
Senior Member
 
Registered: Oct 2003
Posts: 3,057

Rep: Reputation: 61
I don't recall ever having a kernel upgrade bork the xserver.
Have you tried to run the command: system-config-display ?

On my FC5 box, when I use the nvidia drivers, I get that black screen until I edit the /etc/X11/xorg.conf monitor section ....
Code:
#	Option	    "dpms"
	Option	    "NvAgp" "1"
 
Old 08-20-2006, 03:41 AM   #3
linux_guy
LQ Newbie
 
Registered: Aug 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Thanks for the quick response.
Well I am not much aware in this regard. But, I dont think i have changed any drivers. Could you please explain how my upgrading the kernel may have led to this
issue?

Secondly, Is there any method by which i can make the X windows go into verbose mode so that I can see its progress while starting up. It can help me exactly pinpoint the problem. Also, If there is any logfile created by X windows system which might suggest the problem. Currently I am clueless about the problem.

Last edited by linux_guy; 08-20-2006 at 03:43 AM.
 
Old 08-20-2006, 04:32 AM   #4
borchen
Member
 
Registered: Feb 2005
Posts: 57

Rep: Reputation: 15
Quote:
Secondly, Is there any method by which i can make the X windows go into verbose mode so that I can see its progress while starting up. It can help me exactly pinpoint the problem. Also, If there is any logfile created by X windows system which might suggest the problem. Currently I am clueless about the problem.
The logfiles of x windows are situated in /var/log (where all logfiles should be). There names start with Xorg. Just look at the most recent one.

B.T.W. What videocard do you have?

When you upgrade the linux-kernel you have to reinstall the gfx-card drivers. I know this sucks, but just have a look in /lib/modules and you see why; there are seperate directory-trees for every kernel-version installed. When you install drivers they are installed into the kernel-directry-tree of the currently running kernel-version and are not automaticaly copied to a newer kernel-version.

Last edited by borchen; 08-20-2006 at 04:38 AM.
 
Old 08-20-2006, 04:39 AM   #5
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
run the command
system-config-display --reconfig
this way you will reconfigure the X.
 
Old 08-20-2006, 02:45 PM   #6
jlo_sandog
Member
 
Registered: Jul 2005
Location: USA
Distribution: F10 (x86_64)
Posts: 549

Rep: Reputation: 32
do you have an nvidia video card? (probably ati also) If you do, you will have to re-install the proprietary drivers. This will happen anytime you upgrade the kernel.
 
Old 08-21-2006, 09:02 AM   #7
linux_guy
LQ Newbie
 
Registered: Aug 2006
Posts: 9

Original Poster
Rep: Reputation: 0
1.
I dont dunno what is my driver type ... may be the
following command output will let you know about that

[tcs@linuxsvr video]$ pwd
/lib/modules/2.4.20-8/kernel/drivers/video
[tcs@linuxsvr video]$ ls
aty fbcon-mfb.o matrox pm3fb.o sstfb.o
aty128fb.o fbcon-vga-planes.o mdacon.o radeonfb.o tdfxfb.o
clgenfb.o fbgen.o neofb.o riva vga16fb.o
fbcon-hga.o hgafb.o pm2fb.o sis
[tcs@linuxsvr video]$


2.

system-config-display --reconfig

the above command again gives me a blank screen.


3.

I have updated my kernel. so i dont have previous kernel
directory under /lib/modules directory structure.

Last edited by linux_guy; 08-21-2006 at 09:04 AM.
 
Old 08-22-2006, 05:56 AM   #8
linux_guy
LQ Newbie
 
Registered: Aug 2006
Posts: 9

Original Poster
Rep: Reputation: 0
I think that there is some problem with x11-drm
I have read on some forum that while switching kernels
x11-drm needs to be merged again.

If it is so, could anybody tell me what is that and
what is the procedure for doing that?

This is the error in my Xorg.0.log
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such file or directory)
drmOpenDevice: open result is -1, (No such file or directory)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such file or directory)
drmOpenDevice: open result is -1, (No such file or directory)
drmOpenDevice: Open failed
 
Old 08-22-2006, 08:36 AM   #9
linux_guy
LQ Newbie
 
Registered: Aug 2006
Posts: 9

Original Poster
Rep: Reputation: 0
I further found that the kernel might not have
any drm module loaded

dmesg | grep drm doesnot show anything

Can anybody tell me how to build drm modules and load
them into kernel.
 
Old 08-22-2006, 08:42 AM   #10
ehawk
Senior Member
 
Registered: Jul 2003
Posts: 1,257

Rep: Reputation: 48
Xorg problem

I think this issue is pretty common in the last day or so

http://www.linuxformat.co.uk/index.p...ewtopic&t=4050
 
Old 08-24-2006, 12:58 PM   #11
borchen
Member
 
Registered: Feb 2005
Posts: 57

Rep: Reputation: 15
"I have updated my kernel. so i dont have previous kernel
directory under /lib/modules directory structure."



Here's one sound advice: always keep your previous kernel,
so if things do not work you can always boot into the last
working one...
 
  


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
xorg replacing xfree86 on Sarge/Etch causing upgrade problems farpoint Debian 5 06-29-2006 09:45 PM
Upgrade problems on SUSE 10.1 with all package managers greenbox Linux - Software 1 06-21-2006 12:36 AM
xorg-x11 6.8.2 problems... Regulus Linux - Software 4 09-18-2005 10:14 AM
X11 problems after kernel upgrade (2.4.29->2.6.10) Yalla-One Slackware 3 04-12-2005 04:40 PM
xorg-x11-libs required by xorg-x11-devel darknails Fedora 1 01-13-2005 02:34 PM

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

All times are GMT -5. The time now is 10:52 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