私には取り除けない非常に奇妙な問題があります。私はArchLinuxを使用していますが、ドイツ出身で、ドイツ語のキーボードレイアウトなどを使用しています。
そのため、startxを介してGnomeを起動すると、Gnomeが機能しないためログアウトする必要があるというメッセージが表示されます。この問題を2回解決しましたが、再起動するまで解決できませんでした。再起動後も同じ問題が発生し、Gnomeを使用できなくなりました。再起動しない限り、この問題は解決できますが、正確な原因が何であるかはわかりません。まず、XKEYBOARDから警告を受けました。
XKEYBOARD keymap compiler (xkbcomp) reports:
Compat map for group 2 redifined.
Compat map for group 3 redifined.
Compat map for group 4 redifined.
Using new definitions.
Type "ONELEVEL" has 1 levels, but <RALT> has 2 Symbols.
それは言う:
xinit:Connection to X server lost
私のログファイルには次のものが表示されますが、これを短縮しました。
[user@Work log]$ grep -e WW -e EE /var/log/Xorg.0.log.old
[ 1281.385] Current Operating System: Linux Work 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 1281.386] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[ 1281.386] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[ 1281.386] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[ 1281.386] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[ 1281.394] (WW) intel(0): Detected a hung GPU, disabling acceleration.
[ 1281.395] (WW) intel(0): loading DRI2 whilst the GPU is wedged.
[ 1287.428] (EE) Server terminated successfully (0). Closing log file.
その後、同様の問題に関する記事も見つかり、ディレクトリに3つのファイルを追加しました。/etc/X11/xorg.conf.d。最初はこれが問題を解決したようですが、まだ機能しません。
/etc/X11/xorg.conf.d/20-keyboard.conf
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection
/etc/X11/xorg.conf.d/20-keyboard.conf
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection
/etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "NoAccel" "True"
EndSectio
そしてlocale-genを使ってロケールを再生成します。
これ以上何をすべきかわからないので、助けてください。 :D
問題なくxfce4を実行します。
答え1
だからようやく問題を解決しました。次のコマンドを使用してxf86-video-vesaドライバを削除する必要があります。
pacman -R xf86-video-vesa
それから私も変えなければなりません。/etc/X11/xorg.conf.d/20-intel.confファイルターゲット:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "DRI" "False"
EndSection