LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 04-22-2008, 04:17 PM   #1
doronkimchi
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Rep: Reputation: 0
resolution wont go beyond 1024x780


Hi
i have installed Ubuntu 8.04 Beta on my IBM T-60 with Intel 945gm chipset.
Where can i find a driver that can help me increase the resolution beyond 1024x780.

Doron
 
Old 04-22-2008, 04:34 PM   #2
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
Would this be a widescreen laptop?

The Intel driver that ships with Ubuntu shouldn't have a problem.
 
Old 04-22-2008, 04:37 PM   #3
doronkimchi
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by elliott678 View Post
Would this be a widescreen laptop?

The Intel driver that ships with Ubuntu shouldn't have a problem.
no, it is 15' 4:3.
 
Old 04-22-2008, 04:39 PM   #4
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
You are sure it is capable of a higher resolution, right? That could have came with a 1024x768 15" screen.

http://www.thinkwiki.org/wiki/Category:T60
 
Old 04-22-2008, 04:43 PM   #5
lukost
Member
 
Registered: Apr 2008
Location: Gliwice, Poland
Distribution: Any. BSD most often ;-)
Posts: 31

Rep: Reputation: Disabled
Hi! Which driver do you use now? Probably "i810" while "intel" would be much better for you. Just check your /etc/X11/xorg.conf for section 'Driver' and try changing "i810" to "intel". The intel driver autodetects available resolutions. If this doesn't help try adding the desired resolution into xorg.conf ("Screen" section).

The last thing worth trying is using xrandr extension. Xrandr would make it possible to use any resolution/rotate the screen or even use the second display. The bad news is that it works properly with 'intel' driver only (as for i945gm). First check your display name (call xrandr in terminal window). You should get output similar to this:
LVDS connected 1280x800+0+0 (normal left inverted right) 331mm x 207mm
1280x800 60.0*+ 60.0
1280x768 60.0
1024x768 60.0
800x600 60.3
640x480 59.9
It simply means that your output is named LVDS and supports the listed resolutions (mine is set to 1280x800). You can the change mode using:
xrandr --output LVDS --mode 1280x768

Note that you can change only to supported mode. For some reason the 'intel' driver seems to wrongly detect available resolutions. There are two ways to fix the glitch. None is perfect.

1) use xrandr and add the mode... This one is somewhat hardcore as you need to know what you are doing. The syntax is like this:

xrandr --output LVDS --newmode "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync

Note the red numbers. They are not random and are highly specific to your display.

2) install 915resolution tool. It might help. So:
sudo apt-get install 915resolution
sudo reboot

As I have mentioned before - this may not work. If not - give some more information on the driver you use and post your xorg.conf.

As a last attempt you could generate the xorg.conf from beginning. Just remember to backup the old one...
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.old
sudo dpkg-reconfigure -phigh xserver-xorg

then switch to the X console and press ctrl+alt+backspace (to restart X - logging out won't help)

Cheers,
lukost

Last edited by lukost; 04-22-2008 at 05:29 PM.
 
Old 04-22-2008, 04:46 PM   #6
doronkimchi
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by elliott678 View Post
You are sure it is capable of a higher resolution, right? That could have came with a 1024x768 15" screen.

http://www.thinkwiki.org/wiki/Category:T60
I got the laptop from my work place.
how can i find the max resolution of my laptop ?
 
Old 04-22-2008, 04:47 PM   #7
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
Quote:
Originally Posted by lukost View Post
Note that you can change only to supported mode. For some reason the 'intel' driver seems to wrongly detect available resolutions. There are two ways to fix the glitch. None is perfect.
That happens when the correct modes aren't defined in the chipset's VBIOS, Windows doesn't pay attention to that, so the hardware guys got lazy. The driver detects them just fine, it is just being told the wrong information.

Quote:
Originally Posted by doronkimchi View Post
I got the laptop from my work place.
how can i find the max resolution of my laptop ?
You could try checking the BIOS, they usually have the model number of the LCD in there, then you can search for the specifications of that.

Last edited by elliott678; 04-22-2008 at 04:51 PM.
 
Old 04-22-2008, 04:50 PM   #8
doronkimchi
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lukost View Post
Hi! Which driver do you use now? Probably "i810" while "intel" would be much better for you. Just check your /etc/X11/xorg.conf for section 'Driver' and try changing "i810" to "intel". The intel driver autodetects available resolutions. If this doesn't help try adding the desired resolution into xorg.conf ("Screen" section).

The last thing worth trying is using xrandr extension. Xrandr would make it possible for using any resolution/rotate the screen or even use the second display. The bad news is that it works properly with 'intel' driver only. First check for your display name (call xrandr in terminal window). You should get output similar to this:
LVDS connected 1280x800+0+0 (normal left inverted right) 331mm x 207mm
1280x800 60.0*+ 60.0
1280x768 60.0
1024x768 60.0
800x600 60.3
640x480 59.9
It simply means, that your output is named LVDS and supports listed resolutions (mine is set to 1280x800). You can change mode using:
xrandr --output LVDS --mode 1280x768

Note that you can change only to supported mode. For some reason the 'intel' driver seems to wrongly detect available resolutions. There are two ways to fix the glitch. None is perfect.

1) use xrandr and add the mode... This one is somewhat hardcore as you need to know what you are doing. The syntax is like this:

xrandr --output LVDS --newmode "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync

Note the red numbers. They are not random and are highly specific to your display.

2) install 915resolution tool. It might help. So:
sudo apt-get install 915resolution
sudo reboot

As I have mentioned before - this may not work. If not - give me some more information on the driver you use and post me your xorg.conf. I'll try to help.

As a last attempt you could generate the xorg.conf from beginning. Just remember to backup the old one...
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.old
sudo dpkg-reconfigure -phigh xserver-xorg

then switch to the X console and press ctrl+alt+backspace (to restart X - logging out won't help)

Cheers,
lukost
Thank you, I will try to apply your solutions.
 
  


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
Display resolution wont save at power on -> off ChootarLaal Ubuntu 3 03-27-2008 02:42 PM
Monitor wont display 1280x800 resolution dasoberdick Linux - Newbie 1 11-07-2005 11:56 PM
screen resolution wont change jimmyrules712 Linux - Newbie 6 08-18-2005 02:35 PM
XFree86 resolution wont load? DiZASTiX Linux - Newbie 2 05-31-2003 07:11 PM
I chaned my resolution and now xserver wont start Kilahchris Linux - Hardware 8 01-26-2003 04:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

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