web-dev-qa-db-ja.com

Sudo apt-get -f installとは何ですか?

apt-get -f installの使用法は何ですか。 Sudo apt-get updateを実行すると、最後にエラーが発生しましたapt-get -f installを試してください。このコマンドは何ですか?私のエラーの最後の部分は次のとおりです。

. . .  
going to be installed  
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

manpage を参照してください:

-f, --fix-broken
   Fix; attempt to correct a system with broken dependencies in place.
   This option, when used with install/remove, can omit any packages
   to permit APT to deduce a likely solution. If packages are
   specified, these have to completely correct the problem. The option
   is sometimes necessary when running APT for the first time; APT
   itself does not allow broken package dependencies to exist on a
   system. It is possible that a system's dependency structure can be
   so corrupt as to require manual intervention (which usually means
   using dselect(1) or dpkg --remove to eliminate some of the
   offending packages). Use of this option together with -m may
   produce an error in some situations. Configuration Item:
   APT::Get::Fix-Broken.

Umetの依存関係を解決しようとするときの最初の解決策の1つです。 (この質問を参照してください: PPAを追加した後、満たされていない依存関係を解決するにはどうすればよいですか?

8
chaos