From https://askubuntu.com/questions/139947/why-cant-ubuntu-12-04-detect-my-screen-resolution
Open your terminal and run this:
xrandr --newmode $(cvt 1280 1024 60 | grep Mode | sed -e 's/.*"/1280x1024/')
Я использую Ubuntu 13.04 и максимальное разрешение, которое позволяет мне выбрать монитор, к которому я подключен в данный момент - монитор 1280x1024, - 1024x768. Описание для монитора «Неизвестно». Смотри приложение:
Монитор является IBM ThinkVision L170P.
From https://askubuntu.com/questions/139947/why-cant-ubuntu-12-04-detect-my-screen-resolution
Open your terminal and run this:
xrandr --newmode $(cvt 1280 1024 60 | grep Mode | sed -e 's/.*"/1280x1024/')
First type xrandr -q
to see your valid screen outputs eg. VGA1/DVI-1 etc...
Then xrandr --addmode DVI-1 1600x1200
Then new option will appear in your Displays configuration
Tested on ubuntu 14.04 and 2 screens ;)
note this change is not persistent after restart. To make it persistent I made shell script which do above mentioned command xrandr --addmode...
and then I add line to file /etc/lightdm
as follows
[SeatDefaults]
display-setup-script=pathToYourScript
this way new resolution is added before desktop try to set it...
Try installing mesa-utils using sudo apt-get install mesa-utils
.
Once you have this installed reboot your machine. After rebooting the machine open a terminal and type glxinfo | grep render
and glxgears
That should fix it.
Для разрешения 1920x1080 60 Гц используйте следующее:
xrandr --newmode $(cvt 1920 1080 60 | grep Mode | sed -e 's/.*"/1920x1080/') xrandr --addmode VGA-1 1920x1080
Могут встречаться разные имена выходов: VGA1, VGA-1 и т. Д.
Больше информации ЗДЕСЬ .