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 01-31-2007, 05:45 AM   #1
arroquant
LQ Newbie
 
Registered: Dec 2006
Location: indonesia
Distribution: ubuntu feisty fawn, slackware 11/12
Posts: 12

Rep: Reputation: 0
Question how to get widescreen (1280x768) working on linux?


firstly, sorry for my bad english. currently practicing by joining into forums


i've installed mandriva2007 and ubuntu 6.10 on my ThinkPad Z61t, and have xorg.conf configured to run on resolution 1280x768 (widescreen). but its just won't work.


does anyone have solution for this problem??


thanks in advance.
 
Old 01-31-2007, 07:06 AM   #2
Samoth
Member
 
Registered: Apr 2005
Distribution: Exherbo
Posts: 474
Blog Entries: 1

Rep: Reputation: 32
Well, to start off, what video card do you have, and what does your xorg.conf look like?(I assume you are trying to use your laptop display.)
 
Old 01-31-2007, 09:30 PM   #3
bjagee
Member
 
Registered: Jan 2007
Location: Portland, OR
Distribution: Ubuntu Jaunty / Fedora
Posts: 39

Rep: Reputation: 15
1280x768

Have you by chance tried 1280x800 in your xorg.conf ?
 
Old 02-03-2007, 09:14 AM   #4
jmpmjmpm
Member
 
Registered: Feb 2005
Location: UK
Distribution: Ubuntu 6.10
Posts: 50

Rep: Reputation: 15
.

Am I right in thinking that it is centrino type graphics?
if so in ubuntu

Code:
sudo apt-get install 915resolution
making sure you have the extra repositories enabled should do the trick.

don't know about Mandriva tho since I don't use it


edit: and thats 1280 x 800 i believe

it's a intel video bios thing I believe, all the xorg.conf edits in the world wont fix it, you need the patch 915resolution

Last edited by jmpmjmpm; 02-03-2007 at 09:19 AM.
 
Old 02-08-2007, 05:35 AM   #5
arroquant
LQ Newbie
 
Registered: Dec 2006
Location: indonesia
Distribution: ubuntu feisty fawn, slackware 11/12
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by samoth
Well, to start off, what video card do you have, and what does your xorg.conf look like?(I assume you are trying to use your laptop display.)
i have Intel 945 GMA. does it really help if i post my xorg.conf? it is fresh installation

Quote:
Have you by chance tried 1280x800 in your xorg.conf ?
yes, i've tried. but every time xorg starts, it always override the setting i made on the xorg.conf. then X start on resolution 1024x768.


. . .
thanks to jmpmjmpm, i've tried using the 915resolution patch i got from the net. and it works!! my xorg runs on resolution 1280x768...

but it seems there are one problem, i kinda feel that the resolution is supposed to be 1280x800. because the icon appearance seems streched vertically

then i go to "init 3", enter command "915resolution -l" to list resolutions that my card supported. and there are no option 1280x800 listed!

argh!

does anyone have an idea about this?


. . .
** off topic **
@jmpjpm, is ubuntu 6.10 buggy? i've installed it in my computer (core2DUO processor), but sometimes the system crashed and said something about CPU0 and CPU1 (which i assume there's a problem regarding my dual-core processor)..
 
Old 02-08-2007, 05:53 AM   #6
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
The xorg installation includes a program called "gtf" that you can use to generate your own mode line for that resolution:
Code:
>gtf 1280 768 60 -x

  # 1280x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 80.14 MHz
  Modeline "1280x768_60.00"  80.14  1280 1344 1480 1680  768 769 772 795  -HSync +Vsync
I have had problems with modelines that contain the decimal point in the label, and I always cut out the ".00" part.

If your xorg.conf file has a "ModeLines" section, then insert the modeline there. Notice the "UseModes" command in the "Monitor" section. Alternately, your xorg.conf file might have xorg calculate the modelines on the fly and not need a modelines section. In that case, add the modeline to the "Monitor" section.

First Method:
Code:
Section "Monitor"
  DisplaySize  332 207
  HorizSync    32-48
  Identifier   "Monitor[0]"
  ModelName    "ZV5000"
  Option       "DPMS"
  VendorName   "HP"
  VertRefresh  40-70
  UseModes     "Modes[0]"
EndSection


Section "Modes"
  Identifier   "Modes[0]"
  # 1280x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 80.14 MHz
  Modeline "1280x768_60"  80.14  1280 1344 1480 1680  768 769 772 795  -HSync +Vsync
  Modeline 	"1280x800" 80.58 1280 1344 1480 1680 800 801 804 827
  Modeline 	"1280x800" 67.25 1280 1328 1360 1440 800 803 809 822 +HSync -Vsync
  Modeline 	"1280x768" 80.14 1280 1344 1480 1680 768 769 772 795
...
Second Method:
Code:
Section "Monitor"
  DisplaySize  332 207
  HorizSync    32-48
  Identifier   "Monitor[0]"
  ModelName    "ZV5000"
  Option       "DPMS"
  VendorName   "HP"
  VertRefresh  40-70
  # 1280x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 80.14 MHz
  Modeline "1280x768_60"  80.14  1280 1344 1480 1680  768 769 772 795  -HSync +Vsync
EndSection
It would be a good idea to backup your xorg.conf file before editing it:
Code:
sudo cp xorg.conf xorg.conf.backup
Good Luck!

Last edited by jschiwal; 02-08-2007 at 05:55 AM.
 
Old 02-08-2007, 06:12 AM   #7
jmpmjmpm
Member
 
Registered: Feb 2005
Location: UK
Distribution: Ubuntu 6.10
Posts: 50

Rep: Reputation: 15
6.10 it has been said was not the best Ubuntu release with many saying 6.04 was more stable. However I run it on an intel centrino core duo notebook with no probs (not core2 duo tho)

Not sure why your not seeing that 1200x800 resolution, I have every time
 
Old 02-11-2007, 09:27 PM   #8
vsridhars
LQ Newbie
 
Registered: Feb 2007
Distribution: Fedora Core 6
Posts: 4

Rep: Reputation: 0
Hi,

915resolution -l would give you the list of resolutions detected.
It also has a mode to "patch" any one of the listed resolutions to "fake" a different resolution.

So you can have a "915resolution 1280 800" kind of command in any init program (say rc.local within fedora) - and it would patch and have the mode available when X comes up.
 
  


Reply

Tags
hardware, laptop, video, widescreen



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
1280x768 on Compaq V2000 Hit3k Linux - Laptop and Netbook 1 04-25-2006 11:55 PM
1280x768 on laptop Hit3k Linux - Hardware 4 03-27-2006 02:18 AM
Problems with widescreen resolutions (1280x720) on 15" widescreen TFT with nvidia Arvendui Linux - Software 6 02-18-2006 09:21 AM
linux display modes - 1280x768 Xena Linux - Newbie 6 11-04-2005 10:45 AM
Trying to get 1280x768 on my vaio bret.foreman Linux - Hardware 3 07-06-2005 07:57 PM

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

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