0
0

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.

個人的ラズパイ初期設定

Posted at

経緯

もう何度ラズパイの初期設定手順を調べたかわからんので私的備忘録を残す。

手順

1. OSのインストール

下記から選択してインストールする。選定基準はネット上の記事の多さ。
困ったときに出てくる量が多いほうが解決しやすい。32bit・64bitはお好み。

  • Raspberry Pi OS
  • Raspberry Pi Lite
  • Ubuntu

無難にRaspberry Pi ImagerでmicroSDに書き出す。

2. 空のSSHファイルをSDの直下に配置

これをやっておくと電源を入れてすぐにローカルネットワーク内の他のマシンからターミナルにアクセスできる。

3. OSの更新

下記コマンドを入力し、OSに更新をかける

sudo apt update
sudo apt upgrade

4. IPアドレスを固定する

/etc/dhcpcd.confを編集し、IPアドレスを固定する。
保存後、ラズパイを再起動する。

/etc/dhcpcd.conf
interface eth0
static ip_address=192.168.0.50/24
statc routers=192.168.0.1
static domain_name_servers=192.168.0.1 1.1.1.1 
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?