LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 03-23-2004, 05:07 AM   #1
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Rep: Reputation: 0
Widescreen TFT


I got this laptop with a 15,2" Widescreen TFT monitor that can do 1280x864.

I've only managed to achieve 1024x768, and gnome looks ugly.

Is there anyone who knows what to do to get xfree to start with 1280x864 ?

I've tried to set colors to 16/8/4 bit but that's not working.
Modelines, Options, alot of them eg.

Help ?
 
Old 03-23-2004, 05:20 AM   #2
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
Did you try to set the default mode to 1280x864 in your XFree86 config file (usually /etc/X11/XF86Config-4)?
Something like this should do if you have DefaultDepth set to 24:
Code:
        SubSection "Display"
                Depth     24
                Modes           "1280x864" "1024x768" "800x600"
        EndSubSection
Håkan
 
Old 03-23-2004, 05:39 AM   #3
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
Yes, but I get

Code:
screens found, but none has a usable configuration
I've tried this too:

Code:
Section "Monitor"
        Identifier   "Widescreen"
        VendorName   "Monitor Vendor"
        ModelName    "Generic Laptop Display Panel 1280x864"
        HorizSync    31.5 - 67.0
        VertRefresh  50.0 - 71.0
        Option      "dpms"   
        ModeLine "1280x864" 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync
EndSection
 
Old 03-23-2004, 06:17 AM   #4
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
Can we have some more info please, like the exact model of your laptop and your video card. It would probably help.


Håkan
 
Old 03-23-2004, 06:24 AM   #5
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
Medion MD2681-WIM2000

root@rusbrus:~# lspci |grep nVidia
01:00.0 VGA compatible controller: nVidia Corporation NV17 [GeForce4 440 Go 64M] (rev a3)
 
Old 03-23-2004, 07:54 AM   #6
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
Now running XFree 4.4

Still not working

XF86Config looks like this:

Code:
Section "Monitor"
        Identifier   "Widescreen"
        VendorName   "Monitor Vendor"
        ModelName    "Generic Laptop Display Panel 1280x864"
        HorizSync    31.5 - 67.0
        VertRefresh  50.0 - 71.0
        Option      "dpms"
        ModeLine "1280x864" 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync
EndSection

Section "Device"
        Identifier  "Geforce"
        Driver      "nvidia"
        VendorName  "Videocard vendor"
        BoardName   "Geforce 4 440 Go"
        VideoRam    65536
        Option      "dpms"
        Option      "UseFBDev"
        Option      "noaccel"
        Option      "AGPMode" "4"
EndSection

Section "Screen"
    Identifier  "Screen 1"
    Device      "Geforce"
    Monitor     "Widescreen"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1280x864"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x864"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x864"
        ViewPort    0 0
    EndSubsection
EndSection
Logging says this:
Code:
(WW) NVIDIA(0): The user specified HorizSync "31.500-67.000" has been adjusted
(WW) NVIDIA(0):      to "31.500-48.000" (the intersection with EDID-specified
(WW) NVIDIA(0):      HorizSync "29.000-48.000")
(WW) NVIDIA(0): The user specified VertRefresh "50.000-71.000" has been
(WW) NVIDIA(0):      adjusted to "50.000-60.000" (the intersection with  
(WW) NVIDIA(0):      EDID-specified VertRefresh "0.000-60.000"
(II) NVIDIA(0): Widescreen: Using hsync range of 31.50-48.00 kHz
(II) NVIDIA(0): Widescreen: Using vrefresh range of 50.00-60.00 Hz      
(II) NVIDIA(0): Clock range:  12.00 to 350.00 MHz
(II) NVIDIA(0): Not using mode "1280x864" (vrefresh out of range)
(II) NVIDIA(0): Not using mode "1280x864" (no mode of this name)
(II) NVIDIA(0): AGP 4X successfully initialized
(II) NVIDIA(0): Setting mode "1024x768"
GLX is enabled.


Last edited by ivers; 03-23-2004 at 07:56 AM.
 
Old 03-23-2004, 10:14 AM   #7
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
I don't have the nVidia driver here on this box but check the documentation for it, it might mention what modes are supported and how to set them correctly.

Håkan
 
Old 03-23-2004, 10:23 AM   #8
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by hw-tph
I don't have the nVidia driver here on this box but check the documentation for it, it might mention what modes are supported and how to set them correctly.

Håkan
I did

Doesn't help.
 
Old 03-23-2004, 11:50 AM   #9
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
This is a modeline problem.

You need to create a useable modeline for that resolution in the section with everything else. That modeline must specify the starting position and range of the display at the proper frequency. If the frequency is off, then a mode might not be useable by XFree86.

Do a google search for linux modelines.

A display like that is non-standard and needs a fair amount of tweaking.
 
Old 03-23-2004, 12:15 PM   #10
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by JaseP
This is a modeline problem.

You need to create a useable modeline for that resolution in the section with everything else. That modeline must specify the starting position and range of the display at the proper frequency. If the frequency is off, then a mode might not be useable by XFree86.

Do a google search for linux modelines.

A display like that is non-standard and needs a fair amount of tweaking.
Yes, I noticed. Now it says hsync is out of range.. wooo - progress!

Code:
Modeline "1280x864" 87.76  1280 1328 1440 1632   864  864  866  896

Last edited by ivers; 03-23-2004 at 12:17 PM.
 
Old 03-23-2004, 12:22 PM   #11
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
Try here:

http://www.dkfz-heidelberg.de/spec/linux/modeline/

If you look at your logfile, you will notice the nVidia drivers are changing the horizontal and vertical refresh frequencies. Set new ranges in the calculator and adjust your XFree86Config file accordingly.


If this calulator doesn't work, try looking for another online.
 
Old 03-23-2004, 12:25 PM   #12
ivers
LQ Newbie
 
Registered: Mar 2004
Location: Norway
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: 0
That is just the one I'm experimenting with.
 
  


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
Widescreen aerogate Mandriva 5 11-18-2005 12:28 AM
Widescreen BobAymon Linux - Laptop and Netbook 2 10-02-2005 12:06 AM
How to get widescreen support? MDesigner Linux - Software 6 06-30-2005 11:56 AM
Widescreen kizuna Slackware 1 05-15-2005 08:54 AM
zd7000 widescreen zacherrin Linux - Newbie 1 10-19-2004 07:48 PM

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

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