LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-02-2007, 06:17 PM   #1
Xelopheris
LQ Newbie
 
Registered: Jan 2005
Distribution: Debian
Posts: 6

Rep: Reputation: 0
Resolution issue on Acer AL1916W running Ubuntu


K, so I just freshly installed Ubuntu on my desktop, get it up and running, looks a little fuzzy. Check the resolution, and it didn't pick up my screen's native resolution of 1440x900. I download and run nvidia-xconfig, then restart, and to my amazement, the outputted file that nvidia-xconfig created, X didn't like. I'm stuck running at a subpar resolution right now, and can't seem to find out how to get it working.

Here's my xorg.conf file for appropriate sections.

Code:
Section "Monitor"
    Identifier     "Acer AL1916W"
    Option         "DPMS"
    HorizSync      30.0-82.0
    VertRefresh    56.0-76.0
    ModeLine       1440×900″ 136.0 1440 1520 1672 1904 900 903 909 934 +hsync +vsync
EndSection

Section "Device"
    Identifier     "nVidia Corporation G71 [GeForce 7900 GS]"
    Driver         "nvidia"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "nVidia Corporation G71 [GeForce 7900 GS]"
    Monitor        "Acer AL1916W"
    DefaultDepth    24
    Option         "AddARGBVisuals" "True"
    Option         "AddARGBGLXVisuals" "True"
    Option         "NoLogo" "True"
    SubSection     "Display"
        Depth       1
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       4
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       8
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       15
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Modes      "1440x1440" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
EndSection
 
Old 06-03-2007, 01:43 PM   #2
BogusTrumper
Member
 
Registered: May 2006
Posts: 77

Rep: Reputation: 15
In section "screen" subsection "display", under modes, you've got a few "1440x1440" entries. I'd recommend changing all of those to "1440x900" and restarting Xwindows, and see if that fixes it.

If not, I'd say take a look at that ModeLine entry under Section "Monitor", specifically that 1440x900" entry. That looks a little fishy to me somehow. Try taking out the 1440x900" part as a second pass and see if it likes it better.

Last edited by BogusTrumper; 06-03-2007 at 01:45 PM.
 
Old 06-03-2007, 03:14 PM   #3
JohnE1
Member
 
Registered: Jun 2007
Location: Houston, TX
Distribution: Fedora, CentOS, Ubuntu
Posts: 66

Rep: Reputation: 16
A few things about LCDs, you must set the refresh frequency at 60hz, nothing higher.

If you can't get the nVidia driver to work, go back and select VESA as your driver. You will have your 1440x900 resolution, you just won't have 3D graphics without the vendor's driver.
 
Old 06-03-2007, 04:04 PM   #4
thegeekster
Member
 
Registered: Dec 2003
Location: USA (Pacific coast)
Distribution: Vector 5.8-SOHO, FreeBSD 6.2
Posts: 513

Rep: Reputation: 34
I have a very similar setup as you, regarding video card and monitor...........The monitor is the same , but my video card is an nVidia GeForce FX 5200.......

At first I had some problems getting it to work right, but now everything is working as it should......Here are the relevent portions of my xorg.conf:
Code:
Section "Monitor"
	DisplaySize	  410   260
	Identifier   "WidescreenLCD"
	VendorName   "ACR"
	ModelName    "AL1916W"
	Option	    "DPMS"
	HorizSync    31.0 - 84.0
	VertRefresh  56.0 - 76.0
	#  Modeline not really necessary
#	Modeline  "1440x900"  86.0  1440 1488 1520 1600  900 903 909 926 +hsync +vsync
EndSection

Section "Device"
	Identifier  "nVidiaCard"
	Driver      "nvidia"
	VendorName  "nVidia Corporation"
	BoardName   "NV34 [GeForce FX 5200]"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "nVidiaCard"
	Monitor    "WidescreenLCD"
        DefaultDepth 24
       # metamodes option not really necessary
#      Option        "metamodes"  "1440x900 +0+0"
    SubSection     "Display"
        Depth       1
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       4
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       8
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       15
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Viewport    0  0
        Modes      "1440x900" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
I used to have the Modeline in the monitor section, and the Options 'metamode" in the screen section, but found they weren't really necessary.......So try it without them and see if it works, else uncomment them to see if it helps.....

HTH
---thegeekster

Last edited by thegeekster; 06-03-2007 at 06:34 PM.
 
Old 06-03-2007, 04:12 PM   #5
thegeekster
Member
 
Registered: Dec 2003
Location: USA (Pacific coast)
Distribution: Vector 5.8-SOHO, FreeBSD 6.2
Posts: 513

Rep: Reputation: 34
PS: BogusTrumper is right about the incorrect "1440x1440" entries in the screen section..........Each entry should read "1440x900", instead........

And the values for the Modeline seem rather high.........JohnE1 is also correct about too high a refresh rate for LCDs........You can burn them out if they actually accept such a high refresh rate.........
 
Old 06-03-2007, 08:01 PM   #6
Xelopheris
LQ Newbie
 
Registered: Jan 2005
Distribution: Debian
Posts: 6

Original Poster
Rep: Reputation: 0
Wow, didn't even realize how badly nvidia-xconfig murdered the resolutions there...

Anyways, ran a dpkg-reconfigure xserver-xorg and got all the settings to appear properly. Now running 1440x900@60.
 
Old 06-03-2007, 10:39 PM   #7
JohnE1
Member
 
Registered: Jun 2007
Location: Houston, TX
Distribution: Fedora, CentOS, Ubuntu
Posts: 66

Rep: Reputation: 16
Great! Glad to hear you got it working correctly and thanks for sharing your solution. No doubt, someone else will benefit from your "experience".

JohnE1
 
  


Reply

Tags
resolution, xorgconf


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Sound issues with Acer Aspire 5050 running Ubuntu veritasequitas Linux - Laptop and Netbook 3 06-10-2007 05:12 PM
LXer: Running Ubuntu Linux on Acer Tablet PCs Part III LXer Syndicated Linux News 0 12-31-2006 07:33 PM
LXer: Running Ubuntu Linux on Acer Tablet Notebooks Part I LXer Syndicated Linux News 0 12-21-2006 11:33 AM
Acer AL1916W with 1440x900 resolution pablasso Linux - Hardware 4 10-15-2006 02:57 PM
Acer TravelMate Graphics Resolution abridge Linux - Laptop and Netbook 3 11-13-2005 09:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:16 PM.

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