web-dev-qa-db-fra.com

Problème après la réinstallation de Firefox

Après avoir désinstallé Firefox avec Sudo apt-get purge firefox et supprimé .mozilla/firefox/ dans le répertoire personnel. J'ai essayé de le désinstaller/réinstaller plusieurs fois, mais j'ai toujours eu ce message quand j'ai lancé firefox -v

XPCOMGlueLoad error for file /opt/firefox/libxul.so:
libdbus-glib-1.so.2: cannot open shared object file: No such file or directory
Couldn't load XPCOM.

Quelqu'un a-t-il une idée de la façon de résoudre ce problème? J'utilise Ubuntu 16.04 LTS

MISE À JOUR: J'ai essayé de supprimer le répertoire/opt/firefox/et voici ce que j'ai eu quand j'ai lancé Sudo apt-get install firefox

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
 fonts-lyx
The following NEW packages will be installed:
 firefox
0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded.
Need to get 0 B/46,3 MB of archives.
After this operation, 112 MB of additional disk space will be used.
(Reading database ... 465446 files and directories currently installed.)
Preparing to unpack .../firefox_53.0.3+build1-
0ubuntu0.16.04.2_AMD64.deb ...
Unpacking firefox (53.0.3+build1-0ubuntu0.16.04.2) ...
dpkg: error processing archive 
/var/cache/apt/archives/firefox_53.0.3+build1-
0ubuntu0.16.04.2_AMD64.deb (--unpack):
 trying to overwrite '/usr/bin/firefox', which is also in package firefox-
mozilla-build:i386 39.0.3-0ubuntu1
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-
0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
Errors were encountered while processing:
 /var/cache/apt/archives/firefox_53.0.3+build1-
0ubuntu0.16.04.2_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
2
Trung Lê Hoàng

Confirmez quel logiciel Firefox est installé ...

dpkg -l *firefox* | grep ii

Puis désinstallez le Firefox actuel ...

Sudo apt-get purge firefox-mozilla-build

Et installez la nouvelle version ...

Sudo apt-get install firefox
Sudo apt-get install libdbus-glib-1-2 # use only if install fails, then retry install
2
heynnema