(ubuntu) dual screen setup

Pagina: 1
Acties:

Onderwerpen


Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
ik heb ubuntu geinstalleerd, en nu ben ik al een tijdje bezig om mijn dualscreen goed te krijgen ik heb de XF86Config-4 file aangepast en ik heb nu beide schermen werkend met de nvidia driver, alleen maak hij van mijn 2de scherm m'n eerste en kan ik niet van de een naar de andere met de muis.
Ook krijg ik mijn toetsenbord indeling niet juist dat moet je ook in de bestand instellen.

zo ziet mijn XF86config eruit (iemand suggesties)

# 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"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
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 "v4l"
Load "vbe"
Load "xtt"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
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 "NVIDIA Corporation NV25 [GeForce4 Ti 4600] 0"
Driver "nvidia"
BusID "PCI:2:0:0"
Screen 0
Option "NoLogo" "true"
EndSection

Section "Device"
Identifier "NVIDIA Corporation NV25 [GeForce4 Ti 4600] 1"
Driver "nvidia"
BusID "PCI:2:0:0"
Screen 1
Option "NoLogo" "true"
EndSection

Section "Monitor"
Identifier "Iiyama vision master 404"
HorizSync 27-96
VertRefresh 50-160
Option "DPMS"
EndSection

Section "Monitor"
Identifier "Iiyama vision master 17"
HorizSync 23.5-86
VertRefresh 50-120
Option "DPMS"
EndSection


Section "Screen"
Identifier "Screen0"
Device "NVIDIA Corporation NV25 [GeForce4 Ti 4600] 0"
Monitor "Iiyama vision master 404"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "NVIDIA Corporation NV25 [GeForce4 Ti 4600] 1"
Monitor "Iiyama vision master 17"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "screen0"
Screen "screen1" RightOf "screen0"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection

the things we fear most have already happened to us


Acties:
  • 0 Henk 'm!

Verwijderd

Heb je de xinerama extensie wel ge-enabled? Zo nee, ff doen, zo ja, ff de relevante entries uit je XFree86.0.log posten :)

Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
ik heb nu dit toegevoegd aan XF86Config

Section "ServerFlags"
Option "Xinerama" "true"
EndSection

maar nu cloned hij het eerste scherm alleen en dat is nog steeds het verkeerde scherm

the things we fear most have already happened to us


Acties:
  • 0 Henk 'm!

  • blouweKip
  • Registratie: November 1999
  • Laatst online: 00:36
Misschien werkt het wel als je nvidia's twinview gebruikt (nu specificeer je 2 aparte adapters)

bij modules:

code:
1
Load    "xinerama"



mijn device section:

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
    Identifier  "FX5900"
    Driver      "nvidia"
    Option      "TwinView" "true"
    Option      "SecondMonitorHorizSync" "30-72"
    Option      "SecondMonitorVertRefresh" "50-120"
    Option      "MetaModes" "1280x1024, 1024x768, 1024x768, 1024x768, 800x600, 800x600, 640x480, 640x480"
    Option      "TwinViewOrientation" "RightOf"
    Option      "ConnectedMonitor" "crt,crt"
    Option      "Xinerama" "on"
    Option      "NoLogo" "on"
    Option      "NvAGP" "1"
    Option      "DigitalVibrance" "100"   
    Option      "UseEdidFreqs" "True"
    Option      "RenderAccel" "true"


Je primaire monitor refresh geef je nog gewoon aan in de monitor section

"For my friends, anything; for my enemies, the law."


Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
ik heb het twinview nu in orde, maar ik heb de "start" balk (weet niet hoe ik het moet noemen in linux) nu op de 2 de monitor net andersom als bij windows. hoe krijg ik hem op mijn linker monitor ?

[ Voor 97% gewijzigd door 6bit op 29-10-2004 21:55 ]

the things we fear most have already happened to us


Acties:
  • 0 Henk 'm!

  • smokalot
  • Registratie: Juni 2001
  • Laatst online: 09-09 23:05

smokalot

titel onder

ehm, heb je slepen al geprobeerd?

It sounds like it could be either bad hardware or software


Acties:
  • 0 Henk 'm!

  • mOrPhie
  • Registratie: September 2000
  • Laatst online: 11:28

mOrPhie

❤️❤️❤️❤️🤍

6bit schreef op 29 oktober 2004 @ 20:58:
ik heb het twinview nu in orde, maar ik heb de "start" balk (weet niet hoe ik het moet noemen in linux) nu op de 2 de monitor net andersom als bij windows. hoe krijg ik hem op mijn linker monitor ?
Dan moet je de TwinViewOrientation-option aanpassen naar wens. :)
smokalot schreef op 29 oktober 2004 @ 22:22:
ehm, heb je slepen al geprobeerd?
Dan starten je programma's nog steeds op je primary screen volgens mij. :)

[ Voor 23% gewijzigd door mOrPhie op 29-10-2004 22:25 ]

Een experimentele community-site: https://technobabblenerdtalk.nl/. DM voor invite code.


Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
de orientation aanpassen zorgt er alleen maar voor dat de muis anders van het ene scherm naar het ander gaat, ik heb hem nu wel zo staan dat ik van monitor 1 via de rechterkant naar monitor 2 ga en dan daar links binnenkom, maar de 'startbalk' staat nog steeds op monitor 2 dus waarschijnlijk blijft dat de primaire monitor.

oh en ik wil slepen wel proberen in ubuntu als je mij kunt vertellen waar dat kan?
niet in nvidia-settings

[ Voor 17% gewijzigd door 6bit op 30-10-2004 08:24 ]

the things we fear most have already happened to us


Acties:
  • 0 Henk 'm!

  • smokalot
  • Registratie: Juni 2001
  • Laatst online: 09-09 23:05

smokalot

titel onder

6bit schreef op 30 oktober 2004 @ 08:23:
de orientation aanpassen zorgt er alleen maar voor dat de muis anders van het ene scherm naar het ander gaat, ik heb hem nu wel zo staan dat ik van monitor 1 via de rechterkant naar monitor 2 ga en dan daar links binnenkom, maar de 'startbalk' staat nog steeds op monitor 2 dus waarschijnlijk blijft dat de primaire monitor.

oh en ik wil slepen wel proberen in ubuntu als je mij kunt vertellen waar dat kan?
niet in nvidia-settings
nee, ik bedoel gewoon heel intuitief met je muis op de balk gaan staan, muisknop induwen, muis bewegen naar de plek waar je die balk dan wilt hebben, en weer loslaten. dat heet slepen ;)

It sounds like it could be either bad hardware or software


Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
LOL.... dat gaan we strax nog even proberen..... niet aan gedacht. zullen zien of het werkt

maar volgens mij gebruikt hij dan nog steeds de verkeerde monitor als primair

[ Voor 31% gewijzigd door 6bit op 31-10-2004 12:11 ]

the things we fear most have already happened to us


Acties:
  • 0 Henk 'm!

  • blouweKip
  • Registratie: November 1999
  • Laatst online: 00:36
Bij mij gebruikte mijn wm (gnome en idem voor kde) netjes mijn primaire monitor (dwz de monitor die ik als primaire had ingesteld en dus niet degene wiens refresh bij de device sectie staat ingesteld)

heb je dus wel de juiste monitor op de juiste plek ingesteld (misschien dat het ook nog afh is van de head waarop die monitor is aangesloten)

[ Voor 27% gewijzigd door blouweKip op 31-10-2004 15:18 ]

"For my friends, anything; for my enemies, the law."


Acties:
  • 0 Henk 'm!

  • 6bit
  • Registratie: Februari 2002
  • Laatst online: 19-06-2022
ik heb 1 crt en 1 dfi utigang op mijn kaart, windows ziet de crt als monitor 1 en ubuntu ziet de dfi als monitor 1, maar ik kan het in windows eenvoudig omgooien en dan de kabels verwisselen waardoor het in ubuntu ook klopt.

het moet ook anders kunnen zodat ubuntu ook de crt uitgang als primair ziet, maar zo is het eerst ook opgelost

alleen frustrerend is dat wanneer mijn computer opstart dat hij dat dus nu ook op de rechtermonitor doet

[ Voor 14% gewijzigd door 6bit op 01-11-2004 08:11 ]

the things we fear most have already happened to us

Pagina: 1