正しい依存関係

正しい依存関係

ゲームのインストール中、パッケージマネージャはいくつかのパッケージを必要とします。これらのパッケージを入力した後はインストールされませんが、次のように必要です。

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:
 grub-pc : Depends: grub-common (= 2.02~beta2-36ubuntu3.14)
 grub-pc-bin : Depends: grub-common (= 2.02~beta2-36ubuntu3.14)
 grub2-common : Depends: grub-common (= 2.02~beta2-36ubuntu3.14)
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

必要なコマンドを入力した後も問題は解決されませんでした。 :(

$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  grub-common
Suggested packages:
  multiboot-doc grub-emu xorriso desktop-base
The following packages will be upgraded:
  grub-common
1 upgraded, 0 newly installed, 0 to remove and 244 not upgraded.
3 not fully installed or removed.
Need to get 0 B/1.705 kB of archives.
After this operation, 8.192 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
dpkg: warning: files list file for package 'libdbusmenu-gtk3-4:amd64' missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'libdbusmenu-glib4:amd64'     missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'libpython2.7-dev:amd64' missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'libappindicator3-1' missing; assuming package has no files currently installed
dpkg: warning: files list file for package 'python2.7-dev' missing; assuming     package has no files currently installed
dpkg: unrecoverable fatal error, aborting:
 files list file for package 'libpython2.7-minimal:amd64' is missing final     newline
E: Sub-process /usr/bin/dpkg returned an error code (2)

これが繰り返される問題ですか?

ベストアンサー1

aptitudeまず(代わりに)を使用することをお勧めします。apt-getどういうわけか、依存関係の問題を解決する方が良いことがわかりました。

実際に起こっていることはパッケージの問題のように見えます。 dpkg: unrecoverable fatal error, aborting: files list file for package 'libpython2.7-minimal:amd64' is missing final newline

これは頭​​痛を引き起こす可能性が高いです。

クイック Google 検索結果は次のとおりです。 https://www.linuxquestions.org/questions/debian-26/apt-get-dpkg-error-files-list-file-missing-final-newline-271118/

したがって、システムからこのpkgを削除し(下のどこかにある必要があります/var/cache/apt/)、再インストールしてみましょう。

あなたのシステムでパッケージが(とにかく)破損しているようです。

おすすめ記事