2
0

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 1 year has passed since last update.

Ubuntu20.04 ノートPCにインストールした直後にやること(IPアドレス固定など)

Last updated at Posted at 2022-01-03

まずはapt

sudo apt update
sudo apt dist-upgrade

apt dist-upgradeはapt upgrade機能に加えて、不要パッケージの自動削除も実施します。

Vimを入れる(なくてもよい)

sudo apt install vim

IPアドレス固定化

古いやり方のサイトが散見されますが、以下が正式なやり方です。
ファイル名はこのままが正式です。

sudo vim /etc/netplan/99_config.yaml

ファイルの中身は以下です。

network:
  version: 2
  renderer: networkd
  ethernets:
    ens160:
      dhcp4: false
      addresses:
        - 192.168.11.6/24
      gateway4: 192.168.11.1
      nameservers:
        addresses: [192.168.11.1]

適宜変更する項目は以下です。

上記での記載 変更内容
ens160 変更したいネットワークの名前。コマンドip aで確認した名前
- 192.168.11.6/24 固定化したいIPアドレス
gateway4: 192.168.11.1 デフォルトゲートウェイのアドレス。
addresses: [192.168.11.1] DNSのアドレス。普通はデフォルトゲートウェイと同じ。

以下のコマンドで設定を反映します。

sudo netplan apply

ノートPCを閉じてもスリープやサスペンドしないようにする

変更するファイルは以下です。

sudo vim /etc/systemd/logind.conf

変更内容は以下です。
すでに#でコメントアウトされているので、#を外し、ignoreに変更します。

HandleLidSwitch=ignore

以下のコマンドで設定を反映します。

systemctl restart systemd-logind.service

参考文献
https://server-network-note.net/2021/05/ubuntu-20-04-lts-server-set-ipv4address/
https://nisshingeppo.com/ai/ubuntu-nonsleep/

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?