Nvidia screen resolution max 1024 x 768?

Questions about other topics - please check if your question fits better in another category before posting here
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Nvidia screen resolution max 1024 x 768?

Post by ambertone »

Hi all,

Using an Nvidia FX-5500 I've downloaded the latest drivers using:

sudo apt-get install nvidia-glx nvidia-kernel-common
sudo nvidia-xconfig

and the best res I can get is 1024 x 768 @ 75hz. I can change the res down but no option for 1280 x 1024 (which I need) Also the refresh rate is stuck on 75hz (and this monitor is a 60hz unit)

Any ideas?

Cheers

Rod
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Husse

Post by Husse »

Mint comes with envy, so to get the latest nVidia or ATI driver you just log out to a terminal and type "envy" :)
Do you have "nVidia X server settings" under System tools in Mint menu? Have you tried to set the values there?
If not - use envy. If you have that option and it doesn't help you have to edit xorg.conf. Move to etc/X11 and open xorg.conf Look at Section "Screen" and the resolutions you have there.
If 1024 x 768 is max, just add the resolution(s) you want.
Look at Section "Monitor" and the values for VertRefresh
You probably have to change that to something like 43 - 60
User avatar
hairy_Palms
Level 4
Level 4
Posts: 292
Joined: Mon Nov 27, 2006 10:46 am

Post by hairy_Palms »

75Hz is perfectly fine if its less than your max resolution, if i put my lcd down to 640x480 i can up it to 85hz (at 1440x900 its 57Hz)
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

OK, I can't find "system tools". Here is the content of the xorg.conf. I not that the 6800le is my old card and is no longer in this machine. It now has an FX5500. Envy only gives me option to install or uninstall the driver.

Section "Device"
Identifier "NVIDIA Corporation NV40.2 [GeForce 6800 LE]"
Driver "nvidia"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV40.2 [GeForce 6800 LE]"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection


Cheers

Rod
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

Also, when editing xorg.conf I can't save what I have changed. The save option is "greyed" out.

Rod
User avatar
clem
Level 12
Level 12
Posts: 4308
Joined: Wed Nov 15, 2006 8:34 am
Contact:

Post by clem »

Code: Select all

gksu gedit /etc/X11/xorg.conf &
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

No good, I get:

Fine day to work off excess energy. Steal something heavy.
rod@rod-desktop:~$ gksu gedit /etc/x11/xorg.conf &
[1] 6920
rod@rod-desktop:~$
(gedit:6921): GnomeUI-WARNING **: While connecting to session manager:
Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed.

Rod
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

OK, when I put the x11 as X11 it opened, I was able to edit and it saved. I had to reboot. Now the res comes up in the menu but selecting it does not change the monitor to the resolution. Is this possibly a bug or an I missing something? Refresh is still stuck on 75hz.

Also in xorg.conf my old 6800LE is showing, not the current FX5500.

Rod
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

Fixed, after doing the editing you need to run:

sudo dpkg-reconfigure -phigh xserver-xorg

Thanks to all for putting me on the right track. I've learned something new :-)

Rod
Husse

Post by Husse »

The error you got was because of the & that trailed the command. (And as you solved x not X)
Elthium
Level 1
Level 1
Posts: 19
Joined: Mon Mar 26, 2007 1:04 am

Post by Elthium »

I have the same problem as the OP, except that I can type in new resolution but when I try to save it tells me that I don't have permission to do so. How do I log in as root/admin to do the above? I thought that with ubuntu you always logged in as root?

Thx.
telic
Level 3
Level 3
Posts: 188
Joined: Thu Mar 22, 2007 7:48 am

Post by telic »

How do I log in as root/admin to do the above?
I just go to Terminal and type sudo gedit /etc/X11/xorg.conf to launch gEdit in SuperUser mode.

BTW, if you want to hard-code your monitor refresh rate for specific screen resolutions, you can do that in xorg.conf too. For example, to set 1280x1024 at 75Hz and 1024x768 at 60Hz...


SubSection "Display"
Depth 24
Modes "1280x1024
_75" "1024x768_60" "800x600" "640x480"
EndSubSection



----
Elthium
Level 1
Level 1
Posts: 19
Joined: Mon Mar 26, 2007 1:04 am

Post by Elthium »

Telic, I do a cut and paste of the command you posted, then hit enter and I'm asked for a password. The cursor just sits and blinks at me. There is no way I can input my password.

Any ideas?

Thx.
telic
Level 3
Level 3
Posts: 188
Joined: Thu Mar 22, 2007 7:48 am

Post by telic »

Any ideas?
You can also try gksu gedit /etc/X11/xorg.conf in Terminal. You need to be a SuperUser on that PC, of course.

Note that unlike the main Mint login, the Terminal password input won't echo anything for each character that you type, and the cursor just blinks without moving, so it looks like nothing is happening -- until you finish typing the password and then press the Enter key. Then gEdit should open in a separate window.

If that doesn't happen for you, I don't know what to suggest.


----
Last edited by telic on Mon Mar 26, 2007 6:15 am, edited 2 times in total.
User avatar
ambertone
Level 3
Level 3
Posts: 145
Joined: Thu Jan 04, 2007 6:12 am

Post by ambertone »

BTW, if you want to hard-code your monitor refresh rate for specific screen resolutions, you can do that in xorg.conf too. For example, to set 1280x1024 at 75Hz and 1024x768 at 60Hz...


SubSection "Display"
Depth 24
Modes "1280x1024_75" "1024x768_60" "800x600" "640x480"

That's nice, cheers

Rod
Locked

Return to “Other topics”