프로파일을 저장 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