nVidia card not showing monitor native rezolution

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Yupy

nVidia card not showing monitor native rezolution

Post by Yupy »

Hello my monitor has a native 1440x900 rezolution and it's not showing in my graphics card nVidia 9600GT that I use in this PC i've tried from the nVidia control panel to set it up manually but not showing properly I want to mention I did encounter this problem on win7 but I was able to set it from the nVidia control panel... any idea how to make the native rez. work ?
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.
User avatar
Pjotr
Level 24
Level 24
Posts: 20072
Joined: Mon Mar 07, 2011 10:18 am
Location: The Netherlands (Holland) 🇳🇱
Contact:

Re: nVidia card not showing monitor native rezolution

Post by Pjotr »

Please generate an overview of your system like this:
- launch a terminal window and make it full screen, to avoid chopped lines;
- copy/paste this command into the terminal:

Code: Select all

inxi -Fxz
(if you type: the letter F is a capital letter)

Press Enter.

Copy/paste the output in your next message.
Tip: 10 things to do after installing Linux Mint 21.3 Virginia
Keep your Linux Mint healthy: Avoid these 10 fatal mistakes
Twitter: twitter.com/easylinuxtips
All in all, horse sense simply makes sense.
Yupy

Re: nVidia card not showing monitor native rezolution

Post by Yupy »

Ty for the answer

Code: Select all

Graphics:  Card: NVIDIA G94 [GeForce 9600 GT] bus-ID: 02:00.0 
           X.Org: 1.15.1 drivers: nvidia (unloaded: fbdev,vesa,nouveau) Resolution: 1152x864@60.0hz 
           GLX Renderer: GeForce 9600 GT/PCIe/SSE2/3DNOW! GLX Version: 3.3.0 NVIDIA 340.76 Direct Rendering: Yes
User avatar
roblm
Level 15
Level 15
Posts: 5939
Joined: Sun Feb 24, 2013 2:41 pm

Re: nVidia card not showing monitor native rezolution

Post by roblm »

Would you post some additional information.

1. Use this command in the Terminal: xrandr

2. What is the brand and model number of the monitor and how is it connected, including any adapter.

3. Use this command to open the “Xorg.0.log” file:

Code: Select all

gedit /var/log/Xorg.0.log
That command is for Mint Cinnamon and Xfce. If using MATE, change gedit to pluma.

Press Ctrl+A to select the entire file contents. Right click on the screen and select “Copy”. Don't save it to a file. Open the Mint Forum reply window and select
Code” in the menu. Paste the copied lines between the two code words.

If you have problems posting that long file, then upload it to pastebin.com by using this command:

Code: Select all

pastebin /var/log/Xorg.0.log

Post the URL link that displays in the Terminal window.
Yupy

Re: nVidia card not showing monitor native rezolution

Post by Yupy »

The monitor is a Philips Brilliance 190CW it has a vga cable but the video card doesen't have vga connection only dvi so I connected thru a dvi to vga port

xrandr:

Code: Select all

Screen 0: minimum 8 x 8, current 1152 x 864, maximum 8192 x 8192
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 connected primary 1152x864+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0 +
   1360x768       60.0     59.8  
   1152x864       60.0* 
   800x600        72.2     60.3     56.2  
   680x384        60.0     59.8  
   640x480        59.9  
   512x384        60.0  
   400x300        72.2  
   320x240        60.1  
TV-0 disconnected (normal left inverted right x axis y axis)
DVI-I-2 disconnected (normal left inverted right x axis y axis)
DVI-I-3 disconnected (normal left inverted right x axis y axis)
http://paste.linuxmint.com/view/32k0
User avatar
roblm
Level 15
Level 15
Posts: 5939
Joined: Sun Feb 24, 2013 2:41 pm

Re: nVidia card not showing monitor native rezolution

Post by roblm »

What Linux distribution are you using? You didn't post all of the information from using the command inxi -Fxz, as requested by Pjotr. This line is from the log file:
[ 28.897] Current Operating System: Linux romi-PC

This warning line shows the Nvidia driver is unable to read the monitor's EDID data. A monitor connected through it's VGA connector is called a CRT:
[ 36.246] (WW) NVIDIA(0): Unable to read EDID for display device CRT-1

After doing a search for the monitor's specifications, it shows DVI-D and VGA connectors. If you use a DVI to DVI connection, then the monitor's EDID may be read correctly.

Otherwise a custom xorg.conf file will need to be created. I'll give the instructions after you reply.
Yupy

Re: nVidia card not showing monitor native rezolution

Post by Yupy »

The version of Mint i'm using is 17.2 (Cinnamon) thank you for the reply.
User avatar
roblm
Level 15
Level 15
Posts: 5939
Joined: Sun Feb 24, 2013 2:41 pm

Re: nVidia card not showing monitor native rezolution

Post by roblm »

First rename the monitors.xml file in /home/your-user-name/.config (a hidden folder), to monitors.xml.old or the settings in that config file
may conflict with an xorg.conf file settings. Then create an xorg.conf file by using this command in the Terminal:

Code: Select all

gksudo gedit /etc/X11/xorg.conf
In the opened empty file, add these lines:

Code: Select all

Section "Monitor"			
   Identifier    "Monitor0"
   HorizSync       30.0 - 83.0   
   VertRefresh     56.0 - 75.0
EndSection  

Section "Device"
   Identifier   "Device0"
   Driver   "nvidia"   
EndSection

Section "Screen"
   Identifier   "Screen0"
   Device    "Device0"
   Monitor   "Monitor0"
   DefaultDepth   24
   Option "DPI" "89 x 88"
   Option "ModeValidation" "AllowNonEdidModes"
   Option "metamodes" "DVI-I-1: 1440x900_60 +0+0"
EndSection
Reboot. If there is a startup problem and you can't get to the desktop, then at the GRUB boot menu select Recovery Mode. If no menu shows, then hold down the
Shift key while starting, or keep tapping the key. In the menu, select “root - drop to root shell prompt”. When asked for the root password, just type your user password.
Then change the file permissions to read and write by typing:

Code: Select all

mount -o remount,rw /

Then type this command to remove the xorg.conf file:

Code: Select all

rm /etc/X11/xorg.conf

Then type: reboot
You'll go back to the Recovery Mode menu. Don't click anything, just wait about 7 seconds for the reboot.
Yupy

Re: nVidia card not showing monitor native rezolution

Post by Yupy »

@roblm it's working thank you very much :)
Locked

Return to “Graphics Cards & Monitors”