Hi,
I try to setup FC6 on my laptop computer to use it for presentations. It works so far, that I can display to seperate X screens on the laptorp LCD and an external conected LCD. However, the main screen (the screen for login, working, notes... just the non-public screen) appears always on the external connected screen. I would like to have it the other way around. It works all fine within Windows XP, so I suggest there is nothing wrong with the hardware.
TwinView (one big screen over 2) works fine. Main screen is on the main screen.
It seems that I am the only one in the "holy" google to have this problem. I also tried to look it up under x.org and other distribution. Just nothing. Hope anybody can help me solve this problem.
I tried to rearrange the main screen and the external screen in my xorg.conf in all possibilities. It doesn't work. Well, both screens are on, but the main is on the wrong one.
Details:
Laptop: Littlebit Racoon Z75
Graphic card: Nvidia GeForce Go 6600
I did install FC6, all updates done till today, incl. newest nvidia driver from yesterday (no longer beta).
I even tried options like:
- Option "MonitorLayout" "LVDS,TMDS"
- Option "ReverseDDC" "on"
I got this from:
ftp.x.org...
Quote:
Option "ReverseDDC" "boolean"
When BIOS connector informations aren't available, use this option to reverse the mapping of the 2 main DDC ports. Use this if the X serve obviously detects the wrong display for each connector. This is typically needed on the Radeon 9600 cards bundled with Apple G5s. The default is off.
|
and
ubuntuforums.org
Quote:
Option "MonitorLayout" "primary monitor, secondary monitor"
#replace primary monitor with these (from man radeon):
NONE -- Not connected
CRT -- Analog CRT monitor
TMDS -- Desktop flat panel
LVDS -- Laptop flat panel
|
Thx for any help with this.... ehm "strange" problem.
Here is my xorg.conf file. Screen0 is the Main Screen, which should appear on my laptop:
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0"
Screen 1 "Screen1" LeftOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
Option "Xinerama" "off"
Option "Clone" "on"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib/xorg/modules"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1400x1050"
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor1"
ModelName "LCD Panel 1280x1024"
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Identifier "Videocard1"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection