gesousa
(usa Ubuntu)
Enviado em 26/06/2009 - 19:43h
Primeiro, vc pode habilitar o driver em:
Sistema -> Administração -> Drivers de Hardwares
e marque a opção do driver correspodente ao do seu video.
Isso já deve habilitar as outras resoluções..
caso ainda vc não consiga vc pode tentar definir a resolução pelo xrandr.
xrandr --output VGA --mode 1024x768
Ainda pode configurar manualmente o xorg.conf
sudo gedit /etc/X11/xorg.conf
Onde está:
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Virtual 1152 864
EndSubSection
EndSection
Muda para:
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Virtual 1280 1024
EndSubSection
EndSection
Sim vc pode adicionar as resoluções suportadas:
ficaria assim a sessão do screen:
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection