This post is one of several documenting the installation and configuration of Fedora Core 3 on my Sager 9860. There is a "table of contents" post here .
======================================================
A post on these forums got me up and running initially. Big thanks to jeffmcclure for that. One thing: his post only mentions the importance of the ModeLine entry in his xorg.conf file. But the line: Option "IgnoreEDID" "True" is just as important. It won't work without both lines in the config file.
Below is my xorg.conf file for using the built-on screen on my Sager 9860 and Fedora Core 3. Some notes regarding this setup:
1) I have some extra "Modes" specified in the "Screen" section. I'm not sure, but I think these help with games like Quake3 and Doom3.
2) I have a second "InputDevice" section for "DevInputMice." This stops Quake3 based games from interpretting a left+right mouse click as a middle click. Very helpful when fragging!
======================================================
A post on these forums got me up and running initially. Big thanks to jeffmcclure for that. One thing: his post only mentions the importance of the ModeLine entry in his xorg.conf file. But the line: Option "IgnoreEDID" "True" is just as important. It won't work without both lines in the config file.
Below is my xorg.conf file for using the built-on screen on my Sager 9860 and Fedora Core 3. Some notes regarding this setup:
1) I have some extra "Modes" specified in the "Screen" section. I'm not sure, but I think these help with games like Quake3 and Doom3.
2) I have a second "InputDevice" section for "DevInputMice." This stops Quake3 based games from interpretting a left+right mouse click as a middle click. Very helpful when fragging!
PHP Code:
Section "ServerLayout" Identifier "Default Layout" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Keyboard1" "AlwaysCore" EndSection Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/modules/extensions/nvidia" ModulePath "/usr/X11R6/lib/modules/extensions" ModulePath "/usr/X11R6/lib/modules" FontPath "unix/:7100" EndSection Section "Module" Load "dbe" Load "extmod" Load "fbdevhw" Load "glx" Load "record" Load "freetype" Load "type1" #Load "dri" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "IMPS/2" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "no" EndSection Section "InputDevice" Identifier "DevInputMice" Driver "mouse" Option "Protocol" "IMPS/2" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "no" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "LCD Panel 1680x1050" HorizSync 30.0 - 90.0 VertRefresh 59.0 - 85.0 ModeLine "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087 -hsync +vsync Option "dpms" EndSection Section "Device" Identifier "Videocard0" Driver "nvidia" VendorName "NVIDIA" BoardName "NVIDIA GeForce Go 6800" Option "NoLogo" "1" Option "IgnoreEDID" "1" EndSection Section "Screen" Identifier "Screen0" Device "Videocard0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1680x1050" "1280x1024" "1024x768" "800x600" "640x480" EndSubSection EndSection



