LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-09-2012, 05:06 AM   #1
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Rep: Reputation: 34
RedHat boots up to a red screen


Hi I have a dl380 g7 and running RedHat 5.6 (64)

My issue is, it boots up to a red screen I dont see the login or any text. I tried changing resolution (vga=771 etc) but no change. even when I do ctl+alt+F1 I am getting a blank screen!

But via network I am able to connect to the system

any one can tell me what is going on
 
Old 02-09-2012, 05:12 AM   #2
deep27ak
Senior Member
 
Registered: Aug 2011
Location: Bangalore, India
Distribution: RHEL 7.x, SLES 11 SP2/3/4
Posts: 1,195
Blog Entries: 4

Rep: Reputation: 221Reputation: 221Reputation: 221
is it a virtual machine or physical?

Is it a fresh installation or have you done any system changes which you remember?

Try restarting your system as it might have hanged
 
Old 02-09-2012, 05:16 AM   #3
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi because of this reason I have reinstalled this but with the same result. and I have not done any change to the system other than adding vga=771 etc to test this issue, thinking this was something to do with resolution. this is a physical server no virtualization is involved

thanks for the reply deap27ak
 
Old 02-09-2012, 05:27 AM   #4
deep27ak
Senior Member
 
Registered: Aug 2011
Location: Bangalore, India
Distribution: RHEL 7.x, SLES 11 SP2/3/4
Posts: 1,195
Blog Entries: 4

Rep: Reputation: 221Reputation: 221Reputation: 221
what is the configuration of this machine?

You mean while booting you are able to see the screen but after that you don't see the login screen is it?
 
Old 02-09-2012, 05:36 AM   #5
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
the machine is DL 380 (G7), 24GB ram, 2 x 12 core intel, 2x300GB SAS, HP TFT7600 G2 KVM Console

but I did hook up a extenal monitor with same result.


Yes I can install with out any issue, I was able to see the login screen for a while but now end up with this problem
 
Old 02-09-2012, 05:40 AM   #6
deep27ak
Senior Member
 
Registered: Aug 2011
Location: Bangalore, India
Distribution: RHEL 7.x, SLES 11 SP2/3/4
Posts: 1,195
Blog Entries: 4

Rep: Reputation: 221Reputation: 221Reputation: 221
As you said you are able to login through network so go to the CLI and change the default login runlevel to 3 and reboot the system and type startx
 
Old 02-09-2012, 05:43 AM   #7
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Ah that I did not checked, let me get back to you on this, thanks
 
Old 02-09-2012, 06:05 AM   #8
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi, nothing comes up even on runlevel 3, but still the rest of the services comes up
 
Old 02-09-2012, 06:20 AM   #9
deep27ak
Senior Member
 
Registered: Aug 2011
Location: Bangalore, India
Distribution: RHEL 7.x, SLES 11 SP2/3/4
Posts: 1,195
Blog Entries: 4

Rep: Reputation: 221Reputation: 221Reputation: 221
can you post the output of

Code:
#cat /var/log/Xorg.0.log
#cat /etc/X11/xorg.conf
 
Old 02-13-2012, 12:57 AM   #10
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi deep27ak, sorry for the delay, attached are the documents that you requested

Thanks and best regards
Attached Files
File Type: log Xorg.0.log (68.4 KB, 20 views)
File Type: txt xorg.conf.txt (568 Bytes, 22 views)
 
Old 02-13-2012, 01:27 AM   #11
deep27ak
Senior Member
 
Registered: Aug 2011
Location: Bangalore, India
Distribution: RHEL 7.x, SLES 11 SP2/3/4
Posts: 1,195
Blog Entries: 4

Rep: Reputation: 221Reputation: 221Reputation: 221
The problem you are facing seems to be a bug as I found something here

https://bugzilla.redhat.com/show_bug.cgi?id=243022

so you can try to update your driver and see if it works

Code:
#yum update glibc
#yum update xorg-x11-drv-ati
or have a look at comment #5 and #6 on this page
http://www.linuxquestions.org/questi...distro-922178/
I am not sure if this resembles your problem


append this line in your xorg.conf file (make sure to take a backup of original file)
Code:
#vi xorg.conf
# Xorg configuration created by pyxf86config

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "radeon"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
             Modes "1024x768-60" "800x600-60" "640x480-60" 
	EndSubSection
EndSection
the solution is from here
http://forums.gentoo.org/viewtopic-t...2-start-0.html

Last edited by deep27ak; 02-13-2012 at 01:35 AM.
 
Old 02-14-2012, 05:17 AM   #12
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi This did not work by adding the modes! have to check this bug out now!

Last edited by procfs; 02-14-2012 at 05:18 AM.
 
Old 03-29-2012, 02:18 AM   #13
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi deep26ak, sorry for the long silence, was away for awhile.

After upgrading the mentioned packages I am able to start the x server using "startx" command but not at the boot time! it still goes to a read screen and stops!

Thanks and Regards
 
Old 03-29-2012, 04:14 AM   #14
Satyaveer Arya
Senior Member
 
Registered: May 2010
Location: Palm Island
Distribution: RHEL, CentOS, Debian, Oracle Solaris 10
Posts: 1,420

Rep: Reputation: 305Reputation: 305Reputation: 305Reputation: 305
procfs,

I hope you are using the licensed RHEL and paying them for that. Right? So why don't you take their support? They can provide you some better solution. You have been struggling for this problem for so long time, I would suggest you to take the RHEL Support: https://www.redhat.com/wapps/sso/log...port/cases/new you just need to login from here and can create a new case.

Last edited by Satyaveer Arya; 03-29-2012 at 04:23 AM.
 
Old 03-29-2012, 04:35 AM   #15
procfs
Member
 
Registered: Jan 2006
Location: Sri Lanka
Posts: 651

Original Poster
Rep: Reputation: 34
Hi Satyaveer Arya, yes I am using licensed copy and that was my last option, but I like working with this forum since there is always a reply to

Thanks and best regards!
 
  


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
Redhat 5 Windows XP dual boot boots only into Redhat e041110 Red Hat 2 01-28-2011 11:56 PM
[SOLVED] installed rhel wrong, boots to red screen instead of cli anon091 Linux - Newbie 6 09-16-2009 11:13 AM
redhat enterprise linux 4 boots slow with 2 GB RAM , boots fast with 512MB robinsingh Linux - Hardware 14 08-26-2008 11:34 PM
Red Hat 9 never boots rbayne Linux - Software 21 11-23-2003 03:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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