BR Indice(depth=2) VersioniSupportate(hardy gutsy dapper)
Introduzione
In questa guida si vuole spiegare come abilitare la funzione Dual monitor con Xinerama ed una scheda video che possiede una doppia uscita video.
Preparativi
Creare una copia di sicurezza del file xorg.conf digitando all'interno di una finestra di terminale il seguente comando:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
Configurazione
Doppio monitor con una scheda video
Modificare 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, copiare la sezione «Section "Device"» e incollarla subito sotto, si otterà qualcosa di simile:
Section "Device" Identifier "ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP) "Driver "ati" BusID "PCI:1:5:0" EndSection Section "Device" Identifier "ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Driver "ati" BusID "PCI:1:5:0" EndSection
Differenziare gli identificativi «Identifier» in questo modo:
Identifier "0 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Identifier "1 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)"
Nella sezione «Section "Screen"» duplicare e differenziare con 0 e 1, come sopra, le opzioni «Section "Monitor"» e «Section "Screen"» e differenziare ulteriormente entrambe le «Section "Screen"» modificando le diciture «Identifier» e «Monitor» ottenendo qualcosa simile a questo:
Section "Screen" Identifier "Main Screen" Device "0 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Monitor "Main Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection # Subsections for other display depths not shown... EndSection Section "Screen" Identifier "Second Screen" Device "1 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Monitor "Second Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection # Subsections for other display depths not shown... EndSection
Modificare come segue la sezione «ServerLayout»:
Section "ServerLayout" Identifier "Default Layout" Screen 0 "Main Screen" Screen 1 "Second Screen" RightOf "Main Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" InputDevice "Synaptics Touchpad" Option "Xinerama" "true" EndSection
Una volta apportate tutte le modifiche salvare il file e riavviare il server grafico tramite di tasti Ctrl+Alt+Backspace.
Doppio monitor con doppia scheda video
Se sul sistema sono presenti due schede video la risposta al comando {{{ lspci -x | grep VGA }} sarà simile a questa: {{{ PCI:1:5:0 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP) PCI:1:2:0 VGA compatible controller: Intel Corporation 82810E DC-133 CGC [Chipset Graphics Controller] }}} BR Seguire la guida precedente avendo cura di modificare le voci BusID inserendo l'opzione relativa alle proprie schede video: {{{ Section "Device" Identifier "0 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Driver "ati" BusID "PCI:1:5:0" Screen 0 EndSection
Section "Device" Identifier "1 ATI Technologies, Inc. Radeon 330M/340M/350M (RS200 IGP)" Driver "ati" BusID "PCI:1:2:0" Screen 1 EndSection }}}
Non è invece fondamentale cambiare la voce Identifier
Ulteriori risorse
[http://ubuntuforums.org/showthread.php?p=1773624 Dual Monitor Support With Xinerama HowTo:]