Raspberry Pi の環境設定

Created Date: 2016-04-20/ updated date: 2018-03-13
Owner & Collaborators
License
Summary
Raspberry Pi (以降ラズパイと記す) の勉強会の資料です。
この記事は Raspberry Pi 勉強会 の一部です。

Memo

ホスト名の変更 (設定ファイル)

posted by ohwada on April 20, 2016
raspi-config を使わずに、設定ファイルを変更する方法です。
/etc/hostname と /etc/hosts を編集する
「raspberrypi」を希望のホスト名に変更する

$ sudo nano /etc/hostname
---
raspberry <== この行を変更する
---

$ sudo nano /etc/hosts
---
127.0.0.1       localhost
::1             localhost ip6-localhost ip6-loopback
fe00::0         ip6-localnet
ff00::0         ip6-mcastprefix
ff02::1         ip6-allnodes
ff02::2         ip6-allrouters

127.0.0.1 raspberry <== この行を変更する
---

参考

Comments