0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ラズパイでWEBサーバを立てる①

Last updated at Posted at 2022-08-21

かれこれ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アドレス]

を開いたら以下のページが。
image.png
お馴染み?のページが見れたので、一旦ここまでで終了。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?