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.

Ubuntu Server 20.x をインストールした後のホスト名やnetplanなどの設定

Last updated at Posted at 2020-07-22

Raspberry Pi 3 で Ubuntu Server 20.x を起動した際に諸々の設定が必要になったのでメモとしてまとめてみました。

##ホスト名の設定

$ sudo hostnamectl set-hostname <HOSTNAME>

##ネットワーク周りの設定(netplan)
/etc/netplan/*.yaml がファイル名順に処理され、重複する設定項目は後から処理されるファイルで上書きされる。
なので、一番最後に処理されるようなファイル名で作成する

$ sudo vi /etc/netplan/99-manual-config.yaml 

設定反映

$ sudo netplan apply

##DNSリゾルバ設定

$ sudo vi /etc/systemd/resolved.conf

DNS= 行にネームサーバのIPアドレスを指定する
複数サーバを指定する場合は空白で区切って指定する

設定反映

$ sudo systemctl restart systemd-resolved.service

設定状況確認

$ resolvectl status

##タイムゾーンの設定

$ sudo timedatectl set-timezone Asia/Tokyo

##時刻同期設定

$ sudo vi /etc/systemd/timesyncd.conf

NTP= 行に NTP サーバを指定する
複数サーバを指定する場合には空白で区切って指定する

設定反映

$ sudo systemctl restart systemd-timesyncd

##パッケージマネージャの更新とアップグレード

$ sudo apt -y update
$ sudo apt -y upgrade

##ロケールの設定

$ sudo apt -y install language-pack-ja
$ sudo update-locale LANG=ja_JP.UTF-8
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?