web-dev-qa-db-fra.com

Erreur d'installation de Gnome (1)

J'essaye d'installer Gnome sur mon Ubuntu 12.04 P.Pangolin et j'obtiens les erreurs suivantes:

    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

Des pensées?

4
Guy1984

Ok, cela devrait bien fonctionner, mais vous devez faire attention et vous devez revenir en arrière lorsque vous avez terminé. Cela ne résoudra que votre problème d'installation, pas votre problème avec bluetoothd.

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

Puis installez:

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

Cette étape est facultative, mettez à jour:

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

Si votre système n'a pas d'autre problème, l'installation devrait bien se terminer. Lorsque la mise à jour est terminée, rétablissez le pauvre bluetoothd:

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

Maintenant, le problème d'installation devrait être corrigé, mais vous avez toujours un problème avec bluetoothd, probablement celui-ci:

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

Ouvrir une autre question et bonne chance!

7
Avio