web-dev-qa-db-ja.com

firefoxの依存関係の問題を修正するにはどうすればよいですか?

可能性のある複製:
満たされていない依存関係を解決するにはどうすればよいですか?

Ubuntu Software CenterまたはTerminalから何もできない

これは私がコマンドラインから取得するものです:

deus@comp:~$ Sudo apt-get autoremove
[Sudo] password for deus: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
firefox-globalmenu : Depends: firefox (= 18.0+build1-0ubuntu0.12.04.3) but it is not installed
E: Unmet dependencies. Try using -f.
deus@comp:~$ Sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
firefox
Suggested packages:
latex-xft-fonts firefox-gnome-support
The following NEW packages will be installed:
firefox
0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
1 not fully installed or removed.
Need to get 0 B/23.7 MB of archives.
After this operation, 49.7 MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
(Reading database ... 203826 files and directories currently installed.)
Unpacking firefox (from .../firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb (--unpack):
trying to overwrite '/usr/lib/firefox/plugins', which is also in package Adobe-flashplugin 11.2.202.261-0precise1
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for desktop-file-utils ...
Processing triggers for gnome-menus ...
Processing triggers for man-db ...
Errors were encountered while processing:
/var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
deus@comp:~$ Sudo apt-get clean
deus@comp:~$ Sudo apt-get check
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
firefox-globalmenu : Depends: firefox (= 18.0+build1-0ubuntu0.12.04.3) but it is not installed
E: Unmet dependencies. Try using -f.
deus@comp:~$ Sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
firefox
Suggested packages:
latex-xft-fonts firefox-gnome-support
The following NEW packages will be installed:
firefox
0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
1 not fully installed or removed.
Need to get 23.7 MB of archives.
After this operation, 49.7 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://gr.archive.ubuntu.com/ubuntu/ precise-updates/main firefox i386 18.0+build1-0ubuntu0.12.04.3 [23.7 MB]
Fetched 23.7 MB in 1min 27s (271 kB/s)                                         
(Reading database ... 203826 files and directories currently installed.)
Unpacking firefox (from .../firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb (--unpack):
trying to overwrite '/usr/lib/firefox/plugins', which is also in package Adobe-flashplugin 11.2.202.261-0precise1
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for desktop-file-utils ...
Processing triggers for gnome-menus ...
Processing triggers for man-db ...
Errors were encountered while processing:
/var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

何が間違っているのか?

コメントへの編集/回答

@Lucioあなたが言ったことをやりましたが、ここに結果があります。

deus@comp:~$ Sudo dpkg -r firefox
dpkg: warning: there's no installed package matching firefox
deus@comp:~$ ^C
deus@comp:~$ apt-get -f install && Sudo apt-get update && Sudo apt-get upgrade
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
deus@comp:~$ Sudo apt-get -f install && Sudo apt-get update && Sudo apt-get upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
firefox
Suggested packages:
latex-xft-fonts firefox-gnome-support
The following NEW packages will be installed:
firefox
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
1 not fully installed or removed.
Need to get 0 B/23.7 MB of archives.
After this operation, 49.7 MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
(Reading database ... 203826 files and directories currently installed.)
Unpacking firefox (from .../firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb (--unpack):
trying to overwrite '/usr/lib/firefox/plugins', which is also in package Adobe-flashplugin 11.2.202.261-0precise1
No apport report written because MaxReports is reached already
                                                            Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for desktop-file-utils ...
Processing triggers for gnome-menus ...
Processing triggers for man-db ...
Errors were encountered while processing:
/var/cache/apt/archives/firefox_18.0+build1-0ubuntu0.12.04.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
4
Deus Deceit

ご覧のとおり、Adobe-flashpluginが使用するディレクトリを上書きしようとしているため、firefoxのインストールに問題があります。そのため、最初にこのプラグインをアンインストールする必要があります。

Sudo apt-get remove Adobe-flashplugin* 

インストールすると、Firefoxを問題なくインストールできるようになります。

Sudo apt-get update
Sudo apt-get install firefox

問題に関連する詳細情報については、E: Sub-process /usr/bin/dpkg returned an error code (1)レビュー この質問 を参照してください。

4
Lucio