Não é possível configurar o serviço netcfg no arch linux

3

Eu já adicionei este serviço à inicialização com systemctl enable netcfg ,

aqui está o conteúdo de /etc/conf.d/network ,

NETWORKS=(eth0 eth1)
WIRED_INTERFACE="eth0"
WIRELESS_INTERFACE="wlan0"
AUTO_PROFILES=(eth0 eth1)

E conteúdo do netcfg.service:

[root@localhost ~]# cat /etc/systemd/system/multi-user.target.wants/netcfg.service 
[Unit]
Description=Netcfg multi-profile daemon
Before=network.target
Wants=network.target

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/netcfg-daemon start
ExecStop=/usr/bin/netcfg-daemon stop
KillMode=none

[Install]
WantedBy=multi-user.target

logs do journalctl do netcfg:

Oct 29 XXXXXX localhost netcfg-daemon[182]: No recorded netcfg state to restore
Oct 29 XXXXXX localhost systemd[1]: netcfg.service: main process exited, code=exited, status=1/FAILURE
Oct 29 XXXXXX localhost systemd[1]: Failed to start Netcfg multi-profile daemon.
Oct 29 XXXXXX localhost systemd[1]: Unit netcfg.service entered failed state

Ele não funciona (funciona aleatoriamente?), a saída diz que netcfg falhou, mas invocá-lo manualmente funciona, por quê?

    
por daisy 30.10.2012 / 04:03

1 resposta

3

netcfg está obsoleto. Atualize para netctl e tente novamente.

    
por 24.07.2013 / 03:02

Tags