BR Indice(depth=2) VersioniSupportate(hardy gutsy dapper)
Introduzione
In questa guida si vogliono presentare vari metodi per abilitare e gestire l'opzione Dual monitor di varie schede video.
Preparativi
Si raccomanda vivamente di fare una copia di backup del file xorg.conf prima di iniziare qualsiasi procedura tramite il comando
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
nel caso in cui non si ottengano i risultati sperati sui monitor connessi,ripristinarlo eventualmente con i comandi da terminale: {{{ sudo rm /etc/X11/xorg.conf sudo cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf }}}
Riavviare il sistema
Se invece non si riesce a far ripartire il server grafico, selezionare all'avvio del bootloader Grub la voce «Recovery mode».
Avviatosi il «Recovery menu» ,selezionare «root Drop to root shell mode» e dare allora i seguenti comandi:
rm /etc/X11/xorg.conf cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf
Riavviare il sistema con il comando
reboot
Dual monitor con ATI e MergedFB
Requisiti di sistema
- Scheda grafica Ati con doppia uscita video
- Driver open Radeon in uso
Per prima cosa aprire con un [http://wiki.ubuntu-it.org/Ufficio/EditorDiTesto editor di testo] e con i [http://wiki.ubuntu-it.org/AmministrazioneSistema/Sudo privilegi di amministrazione] il file /etc/X11/xorg.conf e scorrere il file di testo fino a trovare l'opzione Section "Device" {{{ Section "Device" Identifier "ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP) "Driver "ati" BusID "PCI:1:5:0" EndSection }}} e aggiungere le seguenti righe prima di EndSection {{{ Option "MergedFB" "true" #Enable MergedFB function
Option "MonitorLayout" "LVDS (TMDS), CRT" # LVDS = Laptop Screen, TMDS = DVI Port, CRT = VGA Port NOT MONITOR TYPE! Option "CRT2Hsync" "30-65" #Horizontal Sync of the Monitor (check your monitor's manual for correct values) Option "CRT2VRefresh" "50-75" #Vertical Refresh rate of the Monitor (check your monitor's manual for correct values) Option "OverlayOnCRTC2" "true" Option "CRT2Position" "LeftOf" #Physical location of your secondary monitor in relationship to your primary monitor. Values can be: LeftOf, RightOf, Above, Below, and Clone. Option "MetaModes" "1280x1024-1280x1024" #Monitor Resolutions for Primary-Secondary monitors
#Option "MergedXineramaCRT2IsScreen0" "true" #determines which screen is going to be the primary screen; value can be "true" or "false" }}} trovare quindi l'opzione Section "Monitor" ed aggiungere come sopra le seguenti righe: {{{ Horizsync 28-64 #You may wish to change the values to fit your specific monitor
- Vertrefresh 43-60
}}} Salvare e riavviare il server X o riavviare il computer affinché le modifiche abbiano effetto.