Pi (2) Network Config

Raspberry Piホスト名変更

Raspberry Piのホスト名は、初期raspberrypiになり、一台以上のRaspberry Piを立ち上がると、Network上識別しつらい。
早速ホスト名変更しましょう。下記のコマンドで関連ファイルを開き、raspberrypiを好みの名前(例えばweatherstation)に変更しましょう。
$ sudo vi /etc/hosts
$ sudo vi /etc/hostname

有線LANをRaspberry Piに接続

有線LANある環境で行う。
LANケーブルを用意し、有線LANをRaspberry Piに接続する

固定IPにする:

sudo vi /etc/dhcpcd.conf

interface eth0
static ip_address=192.168.0.70/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1

無線LAN子機をRaspberry Piに接続

無線LAN親機ある環境で行う。
Raspberry Pi3から、無線LAN内蔵になった。

Leave a Reply

Your email address will not be published. Required fields are marked *