かれこれ1年くらい使っていないラズパイをWEBサーバ化にしよう、
ということで、ラズパイにapacheをインストールする。
ipアドレスは既に固定済みであるため、
sudo apt-get install apache2
だけでOK
と思っていたが、
エラー:1 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2->bin armhf 2.4.38-3+deb10u4
404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
エラー:2 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2-data all 2.4.38-3+deb10u4
404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
エラー:3 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2-utils armhf 2.4.38-3+deb10u4
404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
エラー:4 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2 armhf 2.4.38-3+deb10u4
404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
E: http://raspbian.raspberrypi.org/raspbian/pool/main/a/apache2/apache2-bin_2.4.38-3+deb10u4_armhf.deb の取得に失敗しました 404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
E: http://raspbian.raspberrypi.org/raspbian/pool/main/a/apache2/apache2-data_2.4.38-3+deb10u4_all.deb の取得に失敗しました 404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
E: http://raspbian.raspberrypi.org/raspbian/pool/main/a/apache2/apache2-utils_2.4.38-3+deb10u4_armhf.deb の取得に失敗しました 404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
E: http://raspbian.raspberrypi.org/raspbian/pool/main/a/apache2/apache2_2.4.38-3+deb10u4_armhf.deb の取得に失敗しました 404 Not Found [IP: 2a00:1098:0:80:1000:75:0:3 80]
E: いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-missing オプションを付けて試してみてください。
とエラーが出てくる。
apt-get update を実行するか --fix-missing オプションを付けて試してみてください
これを実行してもうまくいかない。
グーグル先生で検索した結果、以下のHPに辿り付き、この問題は解決した。
https://raspida.com/rpi-buster-error
sudo apt-get update --allow-releaseinfo-change
を実行して、無事にインストール完了。
ブラウザで
http://[local ipアドレス]