Linux Arch: O dhcpcd falha ao iniciar o serviço sem fio, embora tenha funcionado antes

0

Eu tenho apenas o serviço sem fio no meu computador (não consigo movê-lo fisicamente para acessar a Ethernet).

Quando inicio o Linux, vejo uma mensagem de erro: (substituí o wlp0 ... por)

    [FAILED] Failed to start dhcpcd on <mywirelessinterface>. See 'systemctl status dhcpcd@<mywirelessinterface>.service’ for details.

Ok, eu faço isso:

    # systemctl status dhcpcd@<mywirelessinterface>.service

    * dhcpcd@<mywirelessinterface>.service - dhcpcd on <mywirelessinterface>
    Loaded: loaded (/usr/lib/system/system/[email protected]: enabled)
    Active: failed (Result: resources) since <recent date and time>
    Process: 2918 ExecStart=/usr/bin/dhcpcd -q -w %I (code=exited, status=0/SUCCESS)

    <Current date and time> localhost system[1]: PID file /run/dhcpcd-<mywirelessinterface>.pid not readable (yet?) after start.
    <Current date and time> localhost system[1]: Failed to start dhcpcd on <mywirelessservice>.
    Failed to start dhcpcd on <mywirelesscervice>.
    <Current date and time> localhost system[1]: Unit dhcpcd@<mywirelessinterface>.service entered failed state.

Quando eu inicio manualmente com o sudo su:

    # systemctl start dhcpcd@<mywirelessinterface>.service

falha da mesma maneira:

      Job for dhcpcd@<mywirelessinterface>.service failed. See ‘systemctl status netctl@<mywirelessinterface>\x2<mynetworkname>.service’ and ‘journalctl –xn’ for details.

Aqui está o que o jornal diz:

    # journalctl -xn

    -- Logs begin at <date, time>, end at <date, time>. --
    <Current date and time> localhost dhcpcd[4366]: <mywirelessinterface> failed to start wpa_supplicant
    <Current date and time> localhost dhcpcd[4367]: <mywirelessinterface> sucessfully initialized wpa_supplicant
    Line 1062: unknown EAP method 'SIM'. You may need to add support for this EAP method during wpa_supplicant build time configuration. See README for more information.
    Line 1062: failed to parse eap 'SIM'.
    Line 1065: failed to parse network block.
    Line 1072: unknown EAP method 'PSK'. You may need to add support for this EAP method during wpa_supplicant build time configuration. See README for more information.
    Line 1072: failed to parse eap 'PSK'.
    Line 1076: failed to parse network block.
    Line 1108: unknown EAP method 'IKEV2'. You may need to add support for this EAP method during wpa_supplicant build time configuration. See README for more information.
    Line 1108: failed to parse eap 'IKEV2'.
    Line 1111: failed to parse network block.
    Failed to read or parse configuration 'etc/wpa_supplicant/wpa_supplicant.conf'.
    <Current date and time> localhost dhcpcd[213]: <mywirelessinterface>: waiting for carrier
    <Current date and time> localhost dhcpcd[213]: <myotherinterface>: waiting for carrier
    <Current date and time> localhost dhcpcd[213]: control command: /usr/sbin/dhcpcd -k <myotherinterface>
    <Current date and time> localhost dhcpcd[213]: <myotherinterface> removing interface
    <Current date and time> localhost kernel: IPv6: ADDRCONF(NETDEV_UP): <mywirelessinterface>: link is not ready
    <Current date and time> localhost kernel: ieee80211 phy0: rt2800usb_entry_txstatus_timeout: Warning - TX status timeout for entry 10 in queue 0
    <Current date and time> localhost kernel: ieee80211 phy0: rt2800usb_entry_txstatus_timeout: Warning - TX status timeout for entry 10 in queue 0
    <Current date and time> localhost kernel: ieee80211 phy0: rt2800usb_entry_txstatus_timeout: Warning - TX status timeout for entry 10 in queue 0

Eu tentei ip link, iw dev

     ip link set <mywirelessinterface> up

Não ajudou. Eu ainda não joguei com o /etc/dhcpcd.conf e não sei se existe um arquivo de configuração do wpa_supplicant. Eu só não sei o que eles são ainda. Ajuda !!!

    
por melissa 02.07.2014 / 17:25

2 respostas

2

Basicamente, é um problema com o wpa_supplicant: o padrão /etc/wpa_supplicant.conf é basicamente tudo sobre documentação, não é um arquivo de configuração válido. A seguir, um exemplo simples de um arquivo válido:

 ctrl_interface=/var/run/wpa_supplicant
 ap_scan=1
 fast_reauth=0
 network={
    ssid="WifiNetworkName"
    key_mgmt=WPA-PSK
    psk="WifiNetworkPassword"
    priority=5
 }

Você pode querer manter a versão antiga (apenas renomeie-a para /etc/wpa_supplicant_old.conf, por exemplo) porque ela contém muitos exemplos úteis.

Alternativamente, você pode tornar sua vida muito mais simples instalando um gerenciador de rede: existem muitos, netctl, wicd, pessoalmente eu prefiro o NetworkManager. Você pode encontrar no Wiki todas as instruções que você precisa. Apenas lembre-se de desabilitar qualquer outro serviço que tente gerenciar suas conexões para você, você pode listar todos os serviços habilitados com o comando

  sudo systemctl --type=service
    
por 02.07.2014 / 19:53
0

Eu tive um problema semelhante. Eu tenho um perfil de Wi-Fi, mas ele não iniciava depois que eu iniciei dhcpcd na rede com fio.

Para resolver esse problema, desativei todos os dhcpcd e todos os netctl services e reiniciei o sistema; então releia o perfil do wifi e ative novamente

Espero que isso ajude você, usei algo parecido com isso:

sudo systemctl disable dhcpcd.service
sudo systemctl disable netctl.service
sudo reboot
    
por 24.11.2016 / 17:09