web-dev-qa-db-ja.com

Ubuntu 14.04:サブプロセスdpkg-deb --controlがエラー終了ステータスを返しました

「アップグレード」を試みて、次のエラーが発生します。

$Sudo apt upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following package was automatically installed and is no longer required:
  notepadqq-common
Use 'apt-get autoremove' to remove it.
The following packages will be upgraded:
  fonts-opensymbol
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/110 kB of archives.
After this operation, 1,024 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
E: Invalid archive signature
E: Internal error, could not locate member control.tar.{gzbz2xzlzma}
E: Prior errors apply to /var/cache/apt/archives/fonts-opensymbol_2%3a102.6+LibO4.2.8-0ubuntu5.2_all.deb
debconf: apt-extracttemplates failed: No such file or directory
dpkg-deb: error: `/var/cache/apt/archives/fonts-opensymbol_2%3a102.6+LibO4.2.8-0ubuntu5.2_all.deb' is not a debian format archive
dpkg: error processing archive /var/cache/apt/archives/fonts-opensymbol_2%3a102.6+LibO4.2.8-0ubuntu5.2_all.deb (--unpack):
 subprocess dpkg-deb --control returned error exit status 2
E: Sub-process /usr/bin/dpkg returned an error code (1)
1
Naive

これに遭遇した場合、私は試してみます:

Sudo apt-get cleanは、aptキャッシュをクリアします。次に、Sudo apt-get updateを実行して、パッケージリストを最新に更新します。

次にSudo apt-get -f installその後Sudo dpkg --configure -aで完了しなかったインストールを修正し、最後にSudo apt-get upgradeで再試行します。

もちろん、前のコマンドがエラーなしで実行される場合にのみ先に進みます

これを試してください。プロセス中にエラーが発生した場合は、行き詰まったコマンドとエラーで質問を更新してください。

4
John Orion