web-dev-qa-db-ja.com

Gnomeインストールエラー(1)

Ubuntu 12.04 P.PangolinにGnomeをインストールしようとしていますが、次のエラーが発生します。

    root@***:~# Sudo apt-get install gnome-core gnome-session-fallback
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gnome-core is already the newest version.
gnome-session-fallback is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
5 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up bluez (4.98-2ubuntu7) ...
start: Job failed to start
invoke-rc.d: initscript bluetooth, action "start" failed.
dpkg: error processing bluez (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of gnome-bluetooth:
 gnome-bluetooth depends on bluez (>= 4.36); however:
  Package bluez is not configured yet.
dpkg: error processing gnome-bluetooth (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-Shell:
 gnome-Shell depends on gnome-bluetooth (>= 3.0.0); however:
  Package gnome-bluetooth is not configured yet.
dpkg: error processing gnome-Shell (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-user-share:
 gnome-user-share depends on gnome-bluetooth; however:
  Package gnome-bluetooth is not configured yet.
dpkg: error processing gnome-user-share (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of gnome-core:
 gnome-core depends on gNo apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                                                  No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                 No apport report written because MaxReports is reached already
                    No apport report written because MaxReports is reached already
                                                                                  nome-bluetooth (>= 3.0); however:
  Package gnome-bluetooth is not configured yet.
 gnome-core depends on gnome-Shell (>= 3.0); however:
  Package gnome-Shell is not configured yet.
 gnome-core depends on gnome-user-share (>= 3.0); however:
  Package gnome-user-share is not configured yet.
dpkg: error processing gnome-core (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 bluez
 gnome-bluetooth
 gnome-Shell
 gnome-user-share
 gnome-core
E: Sub-process /usr/bin/dpkg returned an error code (1)

Syslog:

Oct  5 16:04:17 ks34900 bluetoothd[5176]: Bluetooth daemon 4.98
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Starting SDP server
Oct  5 16:04:17 ks34900 bluetoothd[5176]: opening L2CAP socket: Address family not supported by protocol
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Server initialization failed
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init alert plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init time plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init proximity plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to open control socket: Address family not supported by protocol (97)
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Can't init bnep module
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init network plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Unable to start SCO server socket
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init audio plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Failed to init gatt_example plugin
Oct  5 16:04:17 ks34900 bluetoothd[5176]: Can't open HCI socket: Address family not supported by protocol (97)
Oct  5 16:04:17 ks34900 bluetoothd[5176]: adapter_ops_setup failed
Oct  5 16:04:17 ks34900 kernel: init: bluetooth main process (5176) terminated with status 1
Oct  5 16:04:17 ks34900 kernel: init: bluetooth main process ended, respawning
Oct  5 16:04:17 ks34900 bluez: Stopping uarts
Oct  5 16:04:17 ks34900 bluez: Stopping rfcomm

何かご意見は?

4
Guy1984

OK、これはうまくいくはずですが、注意する必要があり、完了したら変更を元に戻す必要があります。これはインストールの問題のみを修正し、bluetoothdの問題は修正しません。

Sudo mv /usr/sbin/bluetoothd /usr/sbin/bluetoothd-please-rename-me-when-you-are-done
Sudo ln -s /bin/true /usr/sbin/bluetoothd

次にインストールします:

Sudo apt-get install gnome-core gnome-session-fallback

この手順はオプションです。更新:

Sudo apt-get update && Sudo apt-get upgrade

システムに他の問題がない場合、インストールは正常に完了するはずです。更新が完了したら、貧弱なbluetoothdを元に戻します。

Sudo rm /usr/sbin/bluetoothd
Sudo mv /usr/sbin/bluetoothd-please-rename-me-when-you-are-done /usr/sbin/bluetoothd

これでインストールの問題は修正されるはずですが、bluetoothdにはまだ問題があります。おそらくこれです:

Oct  5 16:04:17 ks34900 bluetoothd[5176]: opening L2CAP socket: Address family not supported by protocol

別の質問を開く と幸運を!

7
Avio