Если не определяется монитор на проприетарном драйвере, попробуйте создать файл
/etc/X11/xorg.conf типа ls /etc/X11/xorg.conf с содержимым:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Затем в консоли сделать
gtf 1920 1200 60 >> /etc/X11/xorg.conf
Затем, если мы откроем наш конфиг
nano /etc/X11/xorg.conf
мы видим:
# 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
Modeline "1920x1200_60.00" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync
Переносим в секцию Section "Monitor" , что бы получилось что-то вроде :
Section "Monitor"
Identifier "Configured Monitor"
# 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
Modeline "1920x1200_60.00" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync
EndSection
Сохраняем конфиг и перезагружаемся. Монитор должен правильно определить частоту.
P.S. Разрешение, разумеется, необходимо указывать для своего монитора =)