web-dev-qa-db-ja.com

Ubuntu 12.04-gnome-settings-daemonのクラッシュとfnキーの問題

私はこれに似た多くの質問があることを知っています、私はそれらを読んで解決策を2日間探していますが、これまでのところ運はありません。

Samsung NP550P5Cラップトップを使用しており、Ubuntu 12.04.3をインストールしました。最初にインストールしたとき、何も問題はありませんでした。明るさや音量調整など、すべてのファンクションキーは完全に正常に機能していました。次に、カーネルの更新を含む更新を実行しました。そして突然 Fn 再起動する前でも、キーが機能しなくなりました。私はそれを解決しようとして数時間を費やしましたが、うまくいきませんでした。それで、私は再び新規インストールを行いました。カーネルの更新が原因である可能性があることをどこかで読んだため、今回はカーネルの更新を行いませんでした。今回は更新後に再起動するまでは問題ありませんでしたが、再起動後に再び動作しなくなりました。現在、タッチパッドの有効化/無効化とスクリーンショットキーのみが機能しています。

samsung-toolssamsung-laptopをインストールしようとしましたが、何も変わりませんでした。また、System Settings-> Keyboard-> Shortcutsに移動してショートカットを編集すると、実際にキーを認識します。たとえば、 Fn + F8 「音量を上げる」と表示されます。

さらに、ファンクションキーでこの問題が発生すると、FirefoxやVLCプレーヤーのようにボタンが以前よりもエッジの効いたように、グラフィックに常にわずかな変化が生じます。テーマや何かを台無しにしているように見えます。

前もって感謝します

編集:gnome-settings-daemonを実行すると、以下の出力が返されてクラッシュします。

=== xinerama setup Configuration ===
  Clone: false
  Output: Laptop attached to LVDS-0
     status: on
     width: 1600
     height: 900
     rate: 60
     primary: true
     position: 0 0
  Output: (null) attached to VGA-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1
  Output: (null) attached to HDMI-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1
  Output: (null) attached to DisplayPort-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1
=== Applying Configuration Configuration ===
  Clone: false
  Output: Laptop attached to LVDS-0
     status: on
     width: 1600
     height: 900
     rate: 60
     primary: true
     position: 0 0
  Output: (null) attached to VGA-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1
  Output: (null) attached to HDMI-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1
  Output: (null) attached to DisplayPort-0
     status: off
     width: -1
     height: -1
     rate: -1
     primary: false
     position: -1 -1

(gnome-settings-daemon:2955): Gdk-WARNING **: The program 'gnome-settings-daemon' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
  (Details: serial 274 error_code 8 request_code 140 minor_code 30)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the GDK_SYNCHRONIZE environment
   variable to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

追加のコマンドと出力:

Sudo uname -u

Linux yunus-550P5C-550P7C 3.8.0-31-generic #46~precise1-Ubuntu SMP Wed Sep 11 18:21:16 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

Sudo lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 12.04.3 LTS
Release:        12.04
Codename:       precise

Sudo dpkg -l | grep xserver-xorg-video-intel

ii xserver-xorg-video-intel-lts-raring 2:2.21.6-0ubuntu4.1~precise1 X.Org X server -- Intel i8xx, i9xx display driver

cat /etc/X11/default-display-manager

/usr/sbin/lightdm

Sudo apt-get install lightdm

Reading package lists... Done
Building dependency tree       
Reading state information... Done
lightdm is already the newest version.
The following packages were automatically installed and are no longer required:
  xbindkeys Thunderbird-globalmenu
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1
Yunus

最初の方法

lightdmを再構成してみてください(問題が解決しない場合は、2ndメソッドに進みます)

  • ターミナルを開く(CTRL+ALT+T)そして次のコマンドを実行します:

    Sudo dpkg-reconfigure lightdm
    
  • 次に、リストからlightdmを選択しました。

lighdm
(ソース: akamaihd.net

  • システムを再起動します。

    Sudo reboot now
    

問題が解決する場合があります。解決しない場合は、2nd Methodに従ってください。

第2の方法

新しいディスプレイマネージャーをインストールすると、問題を解決できます。インストール手順[〜#〜] gdm [〜#〜]lightdm):

  • ターミナルを開く(CTRL+ALT+T)および次のコマンドを実行します。

    Sudo apt-get install gdm
    Sudo dpkg-reconfigure lightdm
    

    次に、リストからgdmを選択しました。

gdm
(ソース: akamaihd.net

    Sudo reboot now
  • それでも修正されない場合は、lightdmをインストールした後にgdmを削除してみてください。

    Sudo apt-get remove --purge lightdm
    Sudo reboot
    

これらの方法で問題が解決することを願っています。さらにサポートが必要な場合は返信してください。

0
Saurav Kumar