Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > GNU Linux Zone > Linux Desktop / X-Windows
Reload this Page Intel mobile 965 chipset on RHEL 5
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Linux Desktop / X-Windows Anything X. Gnome, KDE, remote desktop's, XGames etc.

Reply
 
Thread Tools Display Modes
Old 02-21-2008   #1 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Unhappy Intel mobile 965 chipset on RHEL 5

After I successfully installed RHEL 5 on my hp compaq 6720s, I can only log in to text mode only. Video card is Intel mobile 965 chipset. Can anyone help me to login to GUI by configuring Xserver?

Last edited by dnsanjeewa; 02-21-2008 at 10:55 AM. Reason: Grammer mistakes
dnsanjeewa is offline   Reply With Quote
Old 02-21-2008   #2 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
Hi and Welcome !

Execute this
Code:
system-config-display --reconfig
Configure display settings. Execute startx command to check GUI.
In case it doesn't work, try vesa driver instead of intel.
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 02-22-2008   #3 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Wink Didn't work...

Your code didn't start xserver and gives a fatal error saying,

couldn't start x server on Card0
Error failed to start X server


Anyway my xorg.conf is given below.

Section "Device"
Identifier "Screen0"
Driver "vesa"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24

SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection

Also with kudzu -p -class=VIDEO gives out,

class : Video
bus : pci
detached : 0
desc : "Intel Corporation Mobile Integrated Graphics Controller"
VendorId : 8086
deviceId : 2a03
SubvendorId :103c
SubDeviceId : 30d8
pcitype : 1
pcidom : 0
pcibus : 0
pcidev : 2
pcifn : 1


class : Video
bus : pci
detached : 0
desc : "Intel Corporation Mobile Integrated Graphics Controller"
VendorId : 8086
deviceId : 2a02
SubvendorId :103c
SubDeviceId : 30d8
pcitype : 1
pcidom : 0
pcibus : 0
pcidev : 2
pcifn : 0

Have any ideas to fire up GUI, please.
dnsanjeewa is offline   Reply With Quote
Old 02-22-2008   #4 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
Quote:
couldn't start x server on Card0
Error failed to start X server
Is that output of startx command?
Have you tried intel or i810 driver instead of "vesa".
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 02-24-2008   #5 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Cool Got a method, but...

using "intel" or "i810" gave no results.Sorry. But after trying several hours finally i was able to fire GUI. Here is my way,
Code:
Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1024x768"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    48.0 - 48.0
	VertRefresh  60.0 - 60.0
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "vesa"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
After I edit the xorg.conf in that way and started
Code:
startx
Wow, i'm in GUI and everything working,BUT when i try to shutdown or restart from GUI, system crashes with green screen. Also i couldn't do it using a terminal from GUI. ctrl+alt+backspace or ctrl+alt+F1 also gives no results. Any ideas?
dnsanjeewa is offline   Reply With Quote
Old 02-24-2008   #6 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
Are you passing vga parameter to kernel?
Open /boot/grub/grub.conf file and post kernel line here.

Execute this
Code:
su -
grep -i initdefault /etc/inittab
Post output here.
__________________
New Users: Read This First


devils casper is offline   Reply With Quote
Old 02-24-2008   #7 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Wink output

My out put for the "grep -i initdefault /etc/inittab" is
Code:
#   0 - halt (Do NOT set initdefault to this)
#   6 - reboot (Do NOT set initdefault to this)
id:3:initdefault:
dnsanjeewa is offline   Reply With Quote
Old 02-24-2008   #8 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Smile kernel output

Couldn't reply in one piece coz i hav no Linux wireless drivers for my Broadcom 4311AG card. Kernel ouput is,
Code:
kernel /vmlinuz-2.6.18-8.el5 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
Suppose that is not enough.
Thanx.
dnsanjeewa is offline   Reply With Quote
Old 02-24-2008   #9 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, INDIA
Posts: 18,411
log in as root and open /etc/inittab file.
Replace line
Code:
id:3:initdefault
with
Code:
id:5:initdefault
Open /boot/grub/menu.lst file and add vga=773 at the end of file. Remove quiet and rhgb words.

Start a new thread for Wireless driver problem in Wireless Forum.
__________________
New Users: Read This First



Last edited by devils casper; 02-24-2008 at 02:20 PM. Reason: typo
devils casper is offline   Reply With Quote
Old 02-24-2008   #10 (permalink)
Just Joined!
 
Join Date: Feb 2008
Posts: 7
Cool That didn't work

Your method was not successful. Sorry. It still crashes. I can get in to GUI with booting in to runlevel 5 by editing /etc/inittab, but can't restart or shutdown. Any ideas?
dnsanjeewa is offline   Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
 

Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu 7.10 Failed Installation (laptop) lavinya Ubuntu Help 7 10-23-2007 10:33 PM
DSL config nichalp Mandriva Linux Help 18 08-24-2005 07:19 PM

Free Magazines
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 06:48 PM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0