web-dev-qa-db-ja.com

Arch LinuxGnomeの問題

私は非常に奇妙な問題を抱えています。私はArchLinuxを使用しており、ドイツ出身なのでドイツ語のキーボードレイアウトなどを使用しています。

したがって、startxを介してGnomeを起動すると、Gnomeが機能しないと言われ、ログアウトする必要があります。私はこの問題を2回取り除きましたが、再起動するまでです。 rebotの後、同じ問題が発生し、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
Greeneco

だから私はついにこの問題を解決しました。 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
0
Greeneco