After installing Ubuntu 10.04 with my Samsung SyncMaster B2030, native resolution (1600X900) is not found in the list of resolutions.
Ubuntu – How to set the monitor to its native resolution which is not listed in the resolutions list
monitorresolutionsamsungxrandr
Best Answer
Generate the modeline using
cvt
:which will be:
Get the name of the output to which your display is connected:
This outputs among other things:
In this example the name of the output is
VGA1
.Create the new modeline (with the values from the output of
cvt
):Note:
Add the above created modeline:
If everything went well xrandr will list your newly added resolution.
Test the newly added resolution:
The resolution you set with the above commands will not persist across sessions. Until Ubuntu 11.04 you can add the following lines at the beginning of your
/etc/gdm/Init/Default
to set the resolution automatically every time you log in:This question describes other ways to make
xrandr
customizations permanent.