Aujourd’hui, j’étais en train d’installer ArchLinux et je voulais utiliser le Wifi, parce que la prise réseau marche mal. Rien aberrant. J’utilise wifi-menu
pour ça.
Mais pourtant, impossible de me connecter à Internet. En effet, la commande netctl start wpl_wifi
me renvoie une erreur. Je consulte alors le journal avec systemctl status "netctl@wlp_wifi.service"
et j’obtiens une erreur bizarre.
Mar 31 11:15:23 archiso network[1321]: The interface of network profile 'wlp_wifi' is already up
Mar 31 11:15:23 archiso systemd[1]: Failed to start Automatically generated profile by wifi-menu.
Une réponse sur Internet indique qu’il faut désactiver dhcpcd
, alors je m’empresse de le faire.
systemctl stop dhcpcd.service
systemctl disable dhcpcd.service
Pourtant, rien y fait. Heureusement, on peut toujours compter sur StackOverflow. Il fallait tuer dhcpcd et désactiver l’interface.
killall dhcpcd
ifconfig wlp_wifi down
Maintenant, tout fonctionne.
netctl start wlp_wifi
ping -c 4 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_sep=1 ttl=116 time=46.6 ms
64 bytes from 8.8.8.8: icmp_sep=2 ttl=116 time=44.6 ms
64 bytes from 8.8.8.8: icmp_sep=3 ttl=116 time=45.3 ms
64 bytes from 8.8.8.8: icmp_sep=4 ttl=116 time=44.9 ms
--- 8.8.8.8 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 8ms