Resolution stuck at 800x600

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

You can try setting it with nvidia-settings. Run it as root in a terminal. You need to become root with

Code: Select all

su
instead of gksudo. This should save your desired settings to your xorg.conf file. If this doesn't work, post a copy of your /var/log/Xorg.0.log file so we can see what is happening at boot time with xorg.
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.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

It is using the "nv" driver instead of the "nvidia" driver. Try installing your nvidia driver with Envy. I have had mixed results with the Ubuntu driver manager.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

Try

Code: Select all

nvidia-xconfig
as root in a terminal and reboot. It should amend your xorg file with the correct settings. If that doesn't work, we will have to help you write a custom xorg.conf file.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

Just to be sure, check to see if the module is even being loaded with

Code: Select all

lsmod | grep nvidia
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

Nvidia-xconfig should have written a new xorg.conf file. Post a copy of it. It is in /etc/X11/xorg.conf
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

Su lets you stay as root until you exit the terminal. Sudo will give you root powers for one command only, so there is no real difference in this case. It seems xorg is using the vesa driver. Try changing your xorg.conf file from this:

Code: Select all

Section "Device"
Identifier "Configured Video Device"
Boardname "vesa"
Busid "PCI:3:0:0"
Driver "vesa"
Screen 0
EndSection
To this:

Code: Select all

Section "Device"
Identifier "Configured Video Device"
Boardname "vesa"
Busid "PCI:3:0:0"
Driver "nvidia"
Screen 0
EndSection
Although this worries me:

Code: Select all

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by failsafeDexconf, using
# values from the debconf database and some overrides to use vesa mode.
If nvidia-xconfig had created the new xorg file, it would have said "created by nvidia-xconfig". If changing the driver in xorg doesn't get the desired results, you might have to try installing the driver manually from Nvidia. Is this a regular GeForce, or a GeForce GO?
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Resolution stuck at 800x600

Post by 67GTA »

The easiest way is to run

Code: Select all

sudo gedit /etc/X11/xorg.conf
in a terminal. This will open xorg.conf in gedit with root powers. Only root has the power to edit files in /. Everything in /home is yours.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
celtic426

Re: Resolution stuck at 800x600

Post by celtic426 »

Hey dude I had a similar problem and I think I have a fix for you. Download and install the drivers. Then go to Administration--> Nvidia X Server Settings. In this click "X Server Display Configuration". Set the resolution there. Now click save to X Configuration File near the bottom. But do not click OK. Click preview, then copy and paste all that and replace the contents of "/etc/X11/xorg.conf" with the text in the preview. That should do it.
Locked

Return to “Beginner Questions”