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

ubuntuのよく使う設定ファイルの場所をまとめてみた

Last updated at Posted at 2023-01-16

wifi

wifi設定ファイルディレクトリ

$ /etc/netplan/50-cloud-init.yaml

wifi設定記述

*有線LANはethernets、無線LANはwifisに記述

network:
    ethernets:
        eth0:
            dhcp4: true
            optional: true
    version: 2
    wifis:
        wlan0:
            dhcp4: true
            optional: true
            access-points:
                【SSID】:
                     password: "【PASSWD】"

wifi設定ファイル反映

$ sudo netplan apply

bash

bashの設定ファイルディレクトリ

$ ~/.bashrc
0
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
0
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?