나는 한 달 동안 Arch Linux를 사용해 왔습니다. 내가 사용하고 wifi-menu
내 와이파이 네트워크에 연결합니다. 노트북을 시작할 때마다 명령을 실행합니다.
wifi-menu
연결하려고 할 때 항상이 오류가 발생합니다.
Job for netctl@HelloWorld.service failed. See 'systemctl status netctl@HelloWorld.service' and 'journalctl -xn' for details.
문제는 시작할 때마다 인터페이스가 작동한다는 것입니다. 그래서 나는 이것을 사용하여 인터페이스를 내려 놓았다.
ip link set down wlp2s0
wlp2s0
내 인터페이스 이름이고 HelloWorld
Wi-Fi 네트워크의 SSID입니다.
이번에는 인터페이스 중단과 상관없이 네트워크에 연결되지 않았습니다. 위에서 설명한 것과 동일한 오류가 발생합니다.
이것은 다음의 출력입니다 systemctl status netctl@HelloWorld.service
.
netctl@HelloWorld.service - Networking for netctl profile HelloWorld
Loaded: loaded (/usr/lib/systemd/system/netctl@.service; static)
Active: failed (Result: exit-code) since Mon 2014-03-24 02:32:35 IST; 2min 56s ago
Docs: man:netctl.profile(5)
Process: 8601 ExecStart=/usr/lib/network/network start %I (code=exited, status=1/FAILURE)
Main PID: 8601 (code=exited, status=1/FAILURE)
Mar 24 02:32:34 lenovo network[8601]: Starting network profile 'HelloWorld'...
Mar 24 02:32:35 lenovo network[8601]: chmod: cannot access ‘/run/dhcpcd-wlp2s0.pid’: No such file or directory
Mar 24 02:32:35 lenovo network[8601]: Failed to bring the network up for profile 'HelloWorld'
Mar 24 02:32:35 lenovo systemd[1]: netctl@HelloWorld.service: main process exited, code=exited, status=1/FAILURE
Mar 24 02:32:35 lenovo systemd[1]: Failed to start Networking for netctl profile HelloWorld.
Mar 24 02:32:35 lenovo systemd[1]: Unit netctl@HelloWorld.service entered failed state.
journalctl -xn
나 에게이 출력을 제공합니다 :
Mar 24 02:38:05 lenovo kernel: brcmsmac bcma0:0: brcms_ops_bss_info_changed: qos enabled: false (implement)
Mar 24 02:38:05 lenovo kernel: cfg80211: Calling CRDA to update world regulatory domain
Mar 24 02:38:05 lenovo dhcpcd[256]: wlp2s0: carrier lost
Mar 24 02:38:05 lenovo dhcpcd[256]: wlp2s0: carrier acquired
Mar 24 02:38:05 lenovo dhcpcd[256]: wlp2s0: carrier lost
Mar 24 02:38:05 lenovo dhcpcd[256]: wlp2s0: waiting for carrier
Mar 24 02:38:05 lenovo network[8993]: Failed to bring the network up for profile 'HelloWorld'
Mar 24 02:38:05 lenovo systemd[1]: netctl@HelloWorld.service: main process exited, code=exited, status=1/FAILURE
Mar 24 02:38:05 lenovo systemd[1]: Failed to start Networking for netctl profile HelloWorld.
-- Subject: Unit netctl@HelloWorld.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit netctl@HelloWorld.service has failed.
--
-- The result is failed.
Mar 24 02:38:05 lenovo systemd[1]: Unit netctl@HelloWorld.service entered failed state.
systemctl은 /run/dhcpcd-wlp2s0.pid
존재하지 않는 오류를 제공합니다 . 파일 이름 /run/dhcpcd.pid
이 존재하지만.
이것은 네트워크 컨트롤러 출력입니다 lspci -k
02:00.0 Network controller: Broadcom Corporation BCM4313 802.11bgn Wireless Network Adapter (rev 01)
Subsystem: Broadcom Corporation Device 051b
Kernel driver in use: bcma-pci-bridge
Kernel modules: bcma
인터넷에서 몇 가지를 시도했지만 해결책을 찾지 못했습니다.
이 문제를 해결하는 방법이 있습니까? 아니면 wifi-menu
네트워크에 다시 연결하는 데 사용할 수 있도록 Arch Linux의 네트워킹과 관련된 모든 것을 재설정 할 수 있습니까?
감사!