PDA

View Full Version : Ubuntu problemi doppiop monitor


dHaOs
12-04-2006, 13:29
Salve a tutti sono un neo-Ubuntiano

Ho una vecchia GeForce Ti4200 sul pc su cui ho installato Ubuntu e vorrei poter utilizzare il dual head, ma come faccio?

Ho installato già i driver nvidia (nvidia glx) e l'utility per i setting...

...ho provato a seguire sulla un tutorial su ubuntu-it.org per configurare il doppio monitor ma quando tento di riconfigurare xserver. xorg mi da il seguente errore


Il pacchetto `xserver.xorg' non è installato e non è disponibile alcuna informazione.
Usa dpkg --info (= dpkg-deb --info) per esaminare i file archivio,
e dpkg --contents (= dpkg-deb --contents) per mostrarne il contenuto.
/usr/sbin/dpkg-reconfigure: xserver.xorg non è installato

provando ad aprire il file xorg.conf non trovo nessun "device0" o "device1" ma solo un generico "device"

inoltre nn riesco ad utilizzare una risoluzione maggiore di 1024x768

Come devo fare? :cry:

Grazie a tutti

KiDdolo
12-04-2006, 15:22
ti passo il mio file .conf di quando usavo Debian con 2 LCD da 17" (è di XF86 ma è uguale a Xorg):


# XF86Config-4 (XFree86 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 XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
# cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
# md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
# dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/Speedo"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
# Load "GLcore"
Load "bitmap"
Load "dbe"
Load "ddc"
# Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "speedo"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "it"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "Leadtek6200"
Driver "nvidia"
EndSection

Section "Monitor"
Identifier "schermo1"
Option "DPMS"
HorizSync 30-87
# VertRefresh 75-100
VertRefresh 60-75
Modeline "1024x768" 81.80 1024 1080 1192 1360 768 769 772 802
Modeline "1024x768" 64.11 1024 1080 1184 1344 768 769 772 795
Modeline "1024x768" 94.39 1024 1088 1200 1376 768 769 772 807
Modeline "1280x1024" 138.54 1280 1368 1504 1728 1024 1025 1028 1069
Modeline "1280x1024" 108.88 1280 1360 1496 1712 1024 1025 1028 1060
EndSection

Section "Screen"
Identifier "DualHead"
Device "Leadtek6200"
Monitor "schermo1"
DefaultDepth 24
Option "NvAGP" "1"
Option "NoLogo" "false"
Option "HWCursor" "true"
# Option "ConnectedMonitor" "CRT-1, CRT-0"
Option "ConnectedMonitor" "dfp-1, dfp-0"
Option "TwinView" "true"
Option "SecondMonitorHorizSync" "30 - 95"
# Option "SecondMonitorVertRefresh" "85"
Option "SecondMonitorVertRefresh" "75"
Option "MetaModes" "1280x1024, 1280x1024; 1024x768, 1024x768; 800x600, 800x600"
Option "TwinViewOrientation" "RightOf"
# Option "TwinViewOrientation" "LeftOf"
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
ViewPort 0 0
EndSubsection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "DualHead"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

# Section "DRI"
# Mode 0666
# EndSection


attento al


# Option "ConnectedMonitor" "CRT-1, CRT-0"
Option "ConnectedMonitor" "dfp-1, dfp-0"


leva il # sul CTR se hai , appunti, schermi tradizionali, altrimenti se usi gli LCD lasca così. I device0 e device1 sono quelli che io avevo come "Identifier "schermo1"", abiliti il primo e poi con "twinview" e "connectedmonitor" attivi il 2° affiancato al 1°.
Metamodes e modeline erano tutti dati presi dai miei schermi, non ricordo i comandi (se ti serve appena posso ti cerco il comando apposito), magari all'inizio è meglio che commenti (mettendo il # all'inizio di ogni riga) sopratutto i modeline per non avere problemi di sorta.
Lo schermo destro o sinistro lo modifichi con "twinvieworientation" commentando una delle 2 righe.
Ad ogni modifica devi riavviare il server X.

ciau :)