Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Main Support Categories > Hardware & Laptops
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.

Hardware & Laptops
Problems with hardware & laptops not being detected or supported during or after install.

 
 
Thread Tools Display Modes
Old November 12th, 2007   #1
AbtZ
A Carafe of Ubuntu
 
AbtZ's Avatar
 
Join Date: May 2007
Location: Sweden
Beans: 85
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to AbtZ Send a message via AIM to AbtZ Send a message via MSN to AbtZ Send a message via Skype™ to AbtZ
[SOLVED] Intel 965 does not give correct resolution (1280x800)

EDIT: As of Ubuntu 8.04 the fix proposed further down is no longer necessary -- everything works fine out of the box. So if you have issues with graphics and your Intel 965 chip, it's unrelated to what is being discussed in this thread.

Hi,

I just bought a new laptop with an integrated Intel 965 graphics controller. The laptop came with Ubuntu already installed, with everything working fine... until I decided that I wanted to reinstall Ubuntu to get as "clean" an installation as possible.

Now my resolution is fubared. Gnome won't let me pick any resolution above 1024x768. The native resolution for this screen is 1280x800.

I tried downloading the 915resolution package. I tried changing the default color depth from 24 (which this card does not appear to support) to 16 bits. No luck.

Compiz does not work either, yet glxgears does.

The only thing that gives me the desired native resolution is if I edit xorg.conf so Ubuntu uses the Vesa driver instead. glxgears still works (at lower fps) but I still can't get Compiz Fusion to work, which is my goal ultimately.

The laptop in question is a Clevo MobiNote with an Intel Core 2 Duo T7500 @ 2,2GHz, 2 gb ram, and aforementioned Intel GM965 (X3100) Graphics Media Accelerator.

I have attached a pic of what my desktop looks like, running on the intel driver.

Any help?


Code:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"se"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
EndSection

Section "Device"
	Identifier	"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Driver		"vesa"
	BusID		"PCI:0:2:0"
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Monitor		"Generic Monitor"
	DefaultDepth	16
	SubSection "Display"
		Modes		"1280x800"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice	"Synaptics Touchpad"
EndSection
Attached Thumbnails
Click image for larger version

Name:	skrivbord.jpg
Views:	184
Size:	31.5 KB
ID:	49956  

Last edited by AbtZ; June 8th, 2008 at 09:57 AM..
AbtZ is offline  
Old November 12th, 2007   #2
AbtZ
A Carafe of Ubuntu
 
AbtZ's Avatar
 
Join Date: May 2007
Location: Sweden
Beans: 85
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to AbtZ Send a message via AIM to AbtZ Send a message via MSN to AbtZ Send a message via Skype™ to AbtZ
Re: Intel 965 does not give correct resolution (1280x800)

I managed to fix it, with the help of the company who sold me the laptop. I'm posting the fix here, just in case someone else runs into the same problems as me.

1. Open a terminal.
Code:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
(makes a backup copy of your current xorg.conf)

2.
Code:
sudo gedit /etc/X11/xorg.conf
Copy the text below into the document you just opened.

Code:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"se"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
	Option		"SHMConfig"		"True"
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"stylus"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"stylus"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"eraser"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"eraser"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"cursor"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"cursor"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Driver		"intel"
	BusID		"PCI:0:2:0"
        Option          "monitor-TV"    "TVOutput" 
EndSection

Section "Monitor"
	Identifier	"Allmän skärm"
	Option		"DPMS"
	HorizSync	28-60
	VertRefresh	43-60
EndSection

Section "Monitor"
        Identifier      "TVOutput"
        Option          "Ignore"        "true"
EndSection 

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Monitor		"Allmän skärm"
	DefaultDepth	24
	SubSection "Display"
		Modes		"1280x800" "1024x768"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"

# Uncomment if you have a wacom tablet
#	InputDevice     "stylus"	"SendCoreEvents"
#	InputDevice     "cursor"	"SendCoreEvents"
#	InputDevice     "eraser"	"SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
EndSection
Save and close.

3. ctrl+alt+backspace to reload windows manager. If it doesn't work you can restore your old copy of xorg.conf through
Code:
sudo cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf
I'm not sure what exactly consitutes the "fix" in this xorg.conf (I'm just using the file they provided me). Maybe if I have a bit more time I will try to find out.

Last edited by AbtZ; December 13th, 2007 at 11:21 PM..
AbtZ is offline  
Old November 13th, 2007   #3
Ankh
First Cup of Ubuntu
 
Join Date: Oct 2007
Beans: 1
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

I am having this exact problem on my Gateway T-6815, so I will try to use your xorg.conf to fix it. I also think that I know why this happens ... it is a 'known issue' with version 1.2.0 (I think this is the right version) of xf86-video-intel from intellinuxgraphics.com.

From the README:
- Some GM965 systems, such as the Thinkpad T61, probe the TV as being connected
even when no output connector is available. This results in the gnome-panel
issue noted below.

And the issue noted below:
- gnome-panel is located in the middle of the screen. gnome-panel places
itself within head #0's boundaries, which doesn't work well with a second
head covering the same area as head #0 but larger.

Maybe the next release will not do this?
Ankh is offline  
Old November 14th, 2007   #4
AbtZ
A Carafe of Ubuntu
 
AbtZ's Avatar
 
Join Date: May 2007
Location: Sweden
Beans: 85
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to AbtZ Send a message via AIM to AbtZ Send a message via MSN to AbtZ Send a message via Skype™ to AbtZ
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

Good to know -- I guess then that it is the TVOutPut "Ignore" option that makes it function properly.

I hope it works for you.
AbtZ is offline  
Old November 15th, 2007   #5
Diavo
First Cup of Ubuntu
 
Join Date: Sep 2007
Location: central MD
Beans: 10
Ubuntu 7.04 Feisty Fawn
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

It solved my problem, thank you!

For reference, I have a Gateway ML6720, running the 965 chipset, Intel X3100 gfx card.
Copying & pasting this part is what solved it for me:

Code:
Section "Device"
	Identifier	"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Driver		"intel"
	BusID		"PCI:0:2:0"
        Option          "monitor-TV"    "TVOutput" 
EndSection

Section "Monitor"
	Identifier	"Allmän skärm"
	Option		"DPMS"
	HorizSync	28-60
	VertRefresh	43-60
EndSection

Section "Monitor"
        Identifier      "TVOutput"
        Option          "Ignore"        "true"
EndSection 

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
	Monitor		"Allmän skärm"
	DefaultDepth	24
	SubSection "Display"
		Modes		"1280x800" "1024x768"
	EndSubSection
EndSection
Diavo is offline  
Old December 13th, 2007   #6
goodrench
A Carafe of Ubuntu
 
goodrench's Avatar
 
Join Date: Jul 2006
Beans: 99
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

I am having same problem with my toshiba u300-ns5.
intel 965.
Is there a way to find out if the monitor is the same name as listed here?
mine tells me it is just a generic lcd
or will 'lspci' give me the results?
goodrench is offline  
Old December 13th, 2007   #7
AbtZ
A Carafe of Ubuntu
 
AbtZ's Avatar
 
Join Date: May 2007
Location: Sweden
Beans: 85
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to AbtZ Send a message via AIM to AbtZ Send a message via MSN to AbtZ Send a message via Skype™ to AbtZ
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

"Allmän skärm" is Swedish for "Generic monitor". It doesn't matter what you call it.

From what I've gathered it's ignoring TV output that is important.
AbtZ is offline  
Old December 13th, 2007   #8
goodrench
A Carafe of Ubuntu
 
goodrench's Avatar
 
Join Date: Jul 2006
Beans: 99
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

well, that did it but after a reboot It goes back to the 4:3 resolution.
when I open the xorg.conf file I find that the line that reads

Quote:
Option "monitor-TV" "TVOutput"
is gone.
I have to add it to the file again and restart X.
Is there a way to make this stick?
goodrench is offline  
Old December 13th, 2007   #9
AbtZ
A Carafe of Ubuntu
 
AbtZ's Avatar
 
Join Date: May 2007
Location: Sweden
Beans: 85
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to AbtZ Send a message via AIM to AbtZ Send a message via MSN to AbtZ Send a message via Skype™ to AbtZ
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

Weird. If you save the file it should stick. Something must be changing your xorg file.

Try going through the steps I listed above again, after a fresh reboot. If it still doesn't work, try to figure out if you have some program running at boot that might alter your xorg file.
AbtZ is offline  
Old January 27th, 2008   #10
quill7111
5 Cups of Ubuntu
 
quill7111's Avatar
 
Join Date: Jul 2007
Location: Virginia, USA
Beans: 21
Ubuntu 9.04 Jaunty Jackalope
Re: [SOLVED] Intel 965 does not give correct resolution (1280x800)

It's taken me all day and many false-starts to get this resolution thing sorted out. Thanks so much!!
quill7111 is offline  
 

Bookmarks

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

Forum Jump


All times are GMT -4. The time now is 11:42 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. bilberry