Arch Linuxをインストールした際の備忘録

Table of Contents

最近Arch Linuxをインストールしたのでメモとして残しておきます

sda1 FAT32 sda2 swap sda3 ext4 sda4 ext4

無線のつなぎ方

ip link set <interface> up
wpa_supplicant -B -i <interface> -c <(wpa_passphrase <SSID> <passwd>)
dhcpcd

なんかできなかったら

killall wpa_supplicant dhcpcd

bluetoothのつなぎ方

$ bluetoothctl
[NEW] Controller <MAC Address> <hostname> [default]
[bluetooth]# power on
Changing power on succeeded
[bluetooth]# devices
[bluetooth]# scan on
Discovery started
[CHG] Controller <MAC Address> Discovering: yes
[bluetooth]# devices
[NEW] Device <MAC Address> <Vender Name> <Product ID>
...
[bluetooth]# agent on
Agent registered
[bluetooth]# pair <MAC Address> 
Attempting to pair with <MAC Address>
[CHG] Device <MAC Address> Connected: yes
Request confirmation
[agent] Confirm passkey <passkey> (yes/no): yes
[CHG] Device <MAC Address> Modalias: usb:vXXXX...
[CHG] Device <MAC Address> UUIDs: XXXX....
[CHG] Device <MAC Address> UUIDs: XXXX....
[CHG] Device <MAC Address> ServicesResolved: yes
[CHG] Device <MAC Address> Paired: yes
Pairing successful
[CHG] Device <MAC Address> ServicesResolved: no
[CHG] Device <MAC Address> Connected: no
[CHG] Device <MAC Address> RSSI: XXX
[bluetooth]# connect <MAC Address> 
Attempting to connect to <MAC Address>
[CHG] Device <MAC Address> Connected: yes
Connection successful
[CHG] Device <MAC Address> ServicesResolved: yes
[<Vender Name> <Product ID>]# quit
Agent unregistered

ちょこちょこ書き足します