1
2

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 3 years have passed since last update.

Raspberry OS 64bitのWi-Fi接続

Posted at

目的

Raspberry Pi 4を買ってきたので、自宅のWi-Fiに参加させようと思ったら、なぜか接続できなかったのでメモ。

前提条件

  • Raspberry Pi 4にはモニターもキーボードもつながっていない
  • 2020-08-20-raspios-buster-arm64.imgを使用
  • 有線LANは確保できる

インストールが終わってからの手順

  • /bootディレクトリに"ssh"という名前のファイルを作る
  • とりあえず有線LANで接続して起動
  • aptコマンドを使ってとりあえずすべてを細心にアップデートしてリブート
  • ルーターの設定に従って、ローカルエリア内にあるはずのRaspberry Piを探してpiユーザーでログイン
  • rfkillコマンドを使って現在のBluetooth, Wi-Fiの状態をチェック
  • ブロックされてたら解除
  • raspi-configコマンドを使ってWi-Fiを設定

やったコマンド

適宜読み替えてほしい。

SDの作成

$ sudo dd if=2020-08-20-raspios-buster-arm64.img of=/dev/rdisk2 bs=1m
$ touch /Volumes/boot/ssh
$ diskutil umount /Volumes/boot

ここでできたディスクをRaspberry Piに挿入してブート。

Raspberry Piでのコマンド

$ sudo rfkill
$ sudo rfkill unblock all
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
$ sudo shutdown -r now

再起動してきたらraspi-configでWi-Fi設定。

最後に

32bitカーネル版はWi-Fiがブロックされてないので、正式版が出るときには問題なくなってるのではないかとは思うが。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?