( sunmao | 2010. 08. 25., sze – 13:03 )

Lassan végül is sikerül az átállás és kezdem megszokni a rendszert...
Viszont még közel sem tökéletesek a beállítások, ezt mutatja az X-em indulása is: http://pastebin.com/6AatLRhR

A configom:

xorg.conf
Section "Files"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/100dpi"
EndSection

Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbLayout" "hu"
EndSection

Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "Module"
# direct rendering infrastructure which makes opengl go fast
Load "dri"
# glx and glcore implement opengl
Load "glx"
Load "GLcore"
# double buffering extension (no apps use?)
Load "dbe"
EndSection

/etc/X11/xorg.conf.d/10-evdev.conf
# Catchall classes for input devices
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection

/etc/X11/xorg.conf.d/10-quirks.conf
# Collection of quirks and blacklist/whitelists for specific devices.

# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
# http://bugs.freedesktop.org/show_bug.cgi?id=22442
Section "InputClass"
Identifier "ThinkPad HDAPS accelerometer blacklist"
MatchProduct "ThinkPad HDAPS accelerometer data"
Option "Ignore" "on"
EndSection

/etc/X11/xorg.conf.d/20-nvidia.conf
Section "Device"
Identifier "Default nvidia Device"
Driver "nvidia"
Option "NoLogo" "True"
EndSection

/etc/inittab-ból indítom az X-et így: x:5:once:/bin/su sunmao -l -c "/bin/bash --login -c /usr/bin/startx > /home/sunmao/startx.log 2>&1"

/usr/bin/startxfce4: X server already running on display :0 - Ezt a sort pl abszolút nem értem mikor boot után inittab-ból indul elsőnek az X.

Ami probléma, hogy mikor elindul a DE van olyan, hogy nem jelenik meg a panel csak ha oda kattintok. Van olyan hogy a dock se jelenik meg. Mikor kilövöm az X et és elindítom a tty1-ről akkor minden elem elsőre betölt. Én arra gondolok, hogy az elején összeakadnak a dolgok mikor a compiz indul és ezért nem tud betöltődni minden rendesen, mikor már fut a rendszer utána már a compizzal nem kell törődnie ezért megy minden szépen. Erre valami késleltetés kéne? A többi hibaüzenet is elég idegesítő, kíváncsi lennék mik azok...

Az /etc/X11/xorg.conf.d-ban lévő fájlokhoz nem nyúltam azok alapból ott voltak.