プロファイルの保存にnetcfg
使用さ/etc/network.d/
れる非推奨。の後継者はnetcfg
ですnetctl
。
ワイヤレスネットワークをセットアップするには、をnetctl
使用してインストールしsudo pacman -S netctl
ます。次に、ネットワークプロファイルを作成する必要があります。/etc/netctl/examples/
いくつかの例が含まれています。WPA2-PSKネットワークをセットアップするとします。サンプルファイルをコピーして、編集を開始するだけです。
/etc/netctl# install -m640 examples/wireless-wpa wireless-home
/etc/netctl# cat wireless-home
Description='A simple WPA encrypted wireless connection'
Interface=wlan0
Connection=wireless
Security=wpa
IP=dhcp
ESSID='MyNetwork'
# Prepend hexadecimal keys with \"
# If your key starts with ", write it as '""<key>"'
# See also: the section on special quoting rules in netctl.profile(5)
Key='WirelessKey'
# Uncomment this if your ssid is hidden
#Hidden=yes
編集MyNetwork
およびWirelessKey
必要に応じて。640
アクセス許可に注意してください。ワイヤレスパスフレーズを世界に漏らしたくないのです。
テストを続行します。
# netctl start wireless-home
エラーが発生しない場合は、接続する必要があります。これをテストしましょう:
$ ping 8.8.8.8
このネットワークを起動時に開始するには:
# netctl enable wireless-home