LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Enterprise Linux Forums > Linux - Enterprise
User Name
Password
Linux - Enterprise This forum is for all items relating to using Linux in the Enterprise.

Notices


Reply
  Search this Thread
Old 02-21-2008, 04:58 AM   #1
dnsanjeewa
LQ Newbie
 
Registered: Dec 2007
Posts: 7

Rep: Reputation: 0
Question GM965 chipset is not givin GUI on my HP compaq 6720s


When I install Red hat enterprise linux 5 on my HP compaq 6720s with intel mobile 965 chipset, I can only log into text mode only. Can anyone help me to boot into GUI(init 5)?
 
Old 02-21-2008, 07:21 AM   #2
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
As root type;

system-config-display --reconfig --set-depth=24 --set-driver=i810 --set-resolution=1024x768

Test by typing: startx
 
Old 02-21-2008, 11:04 PM   #3
dnsanjeewa
LQ Newbie
 
Registered: Dec 2007
Posts: 7

Original Poster
Rep: Reputation: 0
Wink Sorry, it didn't work...

I tried your code but it gave an error

option --set-driver not recognized

Even didn't work wothout --set-driver option.

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,
 
Old 02-22-2008, 05:22 AM   #4
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
Then your missing the driver, how did you install RHEL5???

Check for the driver:rpm -qa xorg-x11-drv-i810
If missing then: yum install xorg-x11-drv-i810
(it is also on the installation media)

One can manually edit the xorg.conf file also;

Code:
Section "Device"
Identifier "Screen0"
Driver "i810"
EndSection
 
Old 02-24-2008, 12:30 AM   #5
dnsanjeewa
LQ Newbie
 
Registered: Dec 2007
Posts: 7

Original Poster
Rep: Reputation: 0
Wink Got a method, but not enough.

your code didn't work again.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?
 
Old 02-24-2008, 06:25 AM   #6
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
The codes do work!!! Perhaps you do not have the permissions and/or pathing to use them, try them as root. Or provide the fullpath/command like;

/bin/rpm -qa xorg-x11-drv-i810
Code:
$ sudo /usr/bin/system-config-display --help
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified

Usage: system-config-display [OPTIONS]
Options:
  -h, --help        display this help and exit
  -v, --verbose     display what the program is doing more verbosely
  -o, --output=     the filename of the config file to be output
      --reconfig    don't base configuration on existing config files
      --noui        don't show the gui, implicit when using --set options
      --forceui     force the ui to be shown, needed when using --set options
                    to change some setting, but you still want to show the ui
      --set-<key>=  change the value of a specific configuration key.

        currently supported keys are:

        resolution  the screen resolution used
        depth       the color depth in bits
                    most drivers support 8, 15, 16 and 24
        driver      the graphics card driver to use
        vsync       monitor vertical sync rates allowed (in Hz)
        hsync       monitor horizontal sync rates allowed (in kHz)
        videoram    the amount of videoram in kilobytes, 0 means probe

But telling me the commands did not work is nice, but seeing the actual error messages is more helpful.

I suggested a change to the /etc/xorg.conf file that should have worked if you happen to have the i810 driver installed.
 
Old 02-24-2008, 09:20 AM   #7
dnsanjeewa
LQ Newbie
 
Registered: Dec 2007
Posts: 7

Original Poster
Rep: Reputation: 0
ok here it is.

I hav installed the i810 driver,
Code:
rpm -qa | grep xorg-x11-drv
xorg-x11-drv-i810-1.6.5-9.2.el5
also your
Code:
Section "Device"
Identifier "Screen0"
Driver "i810"
EndSection
displays a error with not matching Screen0 and VideoCard0. Just look at my code in xorg.conf again
Code:
Section "Device"
	Identifier  "Videocard0"
	Driver      "vesa"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
Your piece of code need some changes, isn't it. Sorry i'm new to linux.
thanx.
 
Old 02-24-2008, 11:07 AM   #8
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
OK, yes I see my mistake, then try;
Code:
Section "Device"
	Identifier  "Videocard0"
	Driver      "i810"
EndSection
 
  


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
Ubuntu GUI Issues on a Compaq Presario ShizZy Linux - Laptop and Netbook 2 03-03-2007 09:59 AM
unable to install mandrake10.1 in hp compaq pc due to chipset problem swaroop_nuli Linux - General 1 03-07-2005 04:23 PM
no microphone input on Compaq Presario (AC97 chipset) mward Linux - Hardware 4 11-12-2004 06:15 AM
Mandrake 10/wireless NIC| compaq wl110 [orinocco chipset] fear_nothing Mandriva 2 04-15-2004 07:48 AM
not givin up yet eagle0669 Linux - Networking 1 08-03-2001 07:58 AM

LinuxQuestions.org > Forums > Enterprise Linux Forums > Linux - Enterprise

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