Raspberry Pi 4 + Ubuntu 20.04 でWi-Fiセットアップ

Raspberry Pi4Ubuntu 21.04 Server をインストールして、Wi-Fiにつなぐための設定。

設定ファイルをいじる

設定ファイルをいじります。

sudo vi /etc/netplan/50-cloud-init.yaml
# This file is generated from information provided by the datasource.  Changes
# to it will not persist across an instance reboot.  To disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
    ethernets:
        eth0:
            dhcp4: true
            optional: true
    version: 2

    # ここから追加
    wifis:
        wlan0:
            dhcp4: true
            optional: true
            access-points:
              "SSID-NAME-HERE":
                password: "PASSWORD-HERE"

変更の適用

書き換えたら netplanコマンドで変更を適用すれば、すぐ使えるようになります!

sudo netplan apply

参考サイト

Subscribe to 猫好きが猫以外のことも書く

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe