danlei
Well-Known Member
Hallo!
Ich habe folgendes Problem:
Auf meinem Laptop HP Pavilion dv8000 gibt es Probleme beim Wechsel vom X-Server zu den Konsolen im Textmodus.
Die Farben sind (anscheinend zufällig) immer durcheinander, es scheint am gdm zu liegen, da ich mit startx dieses Problem nicht hatte.
Ich nutze den generischen smp-Kernel, FreeBSD 6.1 rel.
Vielleicht kennt ja jemand von Euch das Problem und kann helfen.
xorg.conf:
/usr/.../rc.d/gdm:
Ich habe folgendes Problem:
Auf meinem Laptop HP Pavilion dv8000 gibt es Probleme beim Wechsel vom X-Server zu den Konsolen im Textmodus.
Die Farben sind (anscheinend zufällig) immer durcheinander, es scheint am gdm zu liegen, da ich mit startx dieses Problem nicht hatte.
Ich nutze den generischen smp-Kernel, FreeBSD 6.1 rel.
Vielleicht kennt ja jemand von Euch das Problem und kann helfen.
xorg.conf:
Code:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "glx"
Load "record"
Load "xtrap"
Load "freetype"
Load "type1"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
# Option "Device" "/dev/sysmouse"
Option "ZAxisMapping" "4 5 6 7"
Option "Emulate3Buttons" "yes"
EndSection
#Section "InputDevice"
# Identifier "synaptics"
# Driver "synaptics"
# Option "Device" "/dev/input/mice"
# Option "Protocol" "auto-dev"
# Option "Emulate3Buttons" "yes"
#EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "Card0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "Unknown Board"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1400x900"
EndSubSection
EndSection
/usr/.../rc.d/gdm:
Code:
#!/bin/sh
case "$1" in
start)
echo " starting gdm... "
export LANG=de
export LANGUAGE=de
export LC_CTYPE=de_DE.ISO8859-15
export LC_ALL=de_DE.ISO8859-15
/usr/X11R6/sbin/gdm -nodaemon &
;;
stop)
echo " shutting gdm down... "
/usr/X11R6/sbin/gdm-stop
;;
restart)
echo " restarting gdm... "
/usr/X11R6/sbin/gdm-restart -nodaemon &
;;
*)
echo " usage: gdm start|stop|restart" >&2
exit 1
;;
esac
echo
exit 0

