utilizzo fedora 10, è possibile collegare 2 monitor, uno che visualizzi il desktop1 e l'altro che visualizzi il desktop2?
grazie e buon 2009!!!
utilizzo fedora 10, è possibile collegare 2 monitor, uno che visualizzi il desktop1 e l'altro che visualizzi il desktop2?
grazie e buon 2009!!!
deve essere la scheda video in grado di farlo,fedora non c'entra tanto
io l'ho fatto sul mio tablet con xorg
http://forum.html.it/forum/showthrea...ghlight=tablet
Progettista elettronico, appassionato di informatica dal 1982, sistemista Linux dal 2002, sono consulente tecnico del Giudice per le indagini preliminari, valuto richieste di consulenza, in ambito Voip/Telefonia anche con grado di sicurezza militare.
parte di /etc/X11/xorg.conf:
# qui setto la scheda grafica per il monitor interno
Section "Device"
Identifier "Intel915"
Driver "i810"
BusID "PCI:0:2:0"
Screen 0
Option "Monitor Layout" "CRT,LFP"
EndSection
# qui setto la scheda grafica per il monitor esterno
Section "Device"
Identifier "AcerLCD"
Driver "i810"
BusID "PCI:0:2:0"
Screen 1
EndSection
# qui setto il display interno
Section "Monitor"
Identifier "Interno"
Option "DPMS"
EndSection
# qui setto le risoluzioni del display interno
Section "Screen"
Identifier "Screen0"
Device "Intel915"
Monitor "Interno"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
EndSection
# qui setto il display esterno
Section "Monitor"
Identifier "Acer FP559"
Option "DPMS"
HorizSync 32-60
VertRefresh 56-70
EndSection
# qui setto le risoluzioni del display esterno (credo debba essere uguale a quello interno)
Section "Screen"
Identifier "Screen1"
Device "AcerLCD"
Monitor "Acer FP559"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "832x624" "800x600" "800x480" "640x480" "640x350"
EndSubSection
EndSection
# qui setto i parametri generali da utilizzare
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "touchscreen" "CorePointer"
EndSection
Section "DRI"
Mode 0666
EndSection
Progettista elettronico, appassionato di informatica dal 1982, sistemista Linux dal 2002, sono consulente tecnico del Giudice per le indagini preliminari, valuto richieste di consulenza, in ambito Voip/Telefonia anche con grado di sicurezza militare.