↓
ダウンロードは今すぐこちらをクリック
Ubuntu20.04で、debパッケージをインストールする際、
Failed to fetchエラーが発生した場合の対処法を紹介します。
エラー例
Error during install: 'Failed to fetch http://jp.archive.ubuntu.com/ubuntu/pool/main/r/ruby2.7/ruby2.7_2.7.0-5ubuntu1.5_amd64.deb 404 Not Found [IP: 160.26.2.187 80]
Invalid command 'RewriteEngine'
実際のエラー内容
Error during install: 'Failed to fetch http://jp.archive.ubuntu.com/ubuntu/pool/main/r/ruby2.7/ruby2.7_2.7.0-5ubuntu1.5_amd64.deb 404 Not Found [IP: 160.26.2.187 80]
Failed to fetch http://jp.archive.ubuntu.com/ubuntu/pool/main/r/ruby2.7/libruby2.7_2.7.0-5ubuntu1.5_amd64.deb 404 Not Found [IP: 160.26.2.187 80]
対応手順
apt-get updateを実行して、パッケージリストを更新することで対応できます。
$ sudo apt-get update
これでもエラーなる場合は、
古いパッケージリストが影響しているので、
それを削除後に再度apt-get updateを実行します。
$ sudo rm -rf /var/lib/apt/lists/*
$ sudo apt-get update
P.S
Ubuntu20.04でFailed to fetch 404 Not Foundエラーが発生した場合の対処法のもっと高い技術を身につけたいならこちら
<<関連記事>>
・Ubuntu20.04+Apacheのインストールエラー対策
・rpmdbが壊れた場合の修復手順
・FortiGuardのスパムメールブロックを解除方法
・LinuxにUSB外付けHDDを接続する(NTFSフォーマットの場合要注意)
・viエディタ(vim)で「readonlyオプションが設定されています」と表示された場合
- 次のページへ:spamassassinが起動しない場合の対処法
- 前のページへ:LibClamAV Warning: cli_scanxz: decompress file size exceeds limits
- この記事の属するカテゴリ:Linuxエラー対処法へ戻る