Search

You can find the results of your search below.

Fulltext results:

Comment redémarrer une interface réseau sur un Raspberry Pi
4 Hits, Last modified:
eut aider. Voici comment vous pouvez le faire : <code bash> sudo ifconfig eth0 down && sudo ifconfig eth0 up #Ethernet </code> Cette commande va d'abord désactiver l'interfac... suivante pour redémarrer votre interface WiFi : <code bash> sudo ifconfig wlan0 down && sudo ifconfig wlan0 up #WiFi </code> Semblable à la commande Ethernet, cela va d'abo
Comment désactiver la notification de basse tension sur votre Raspberry Pi
2 Hits, Last modified:
r désactiver l'avertissement de basse tension : <code bash> echo "avoid_warnings=1" | sudo tee -a /boot... sudo apt remove lxplug-ptbatt -y && sudo reboot </code> Décortiquons ce que fait cette commande : * *