Browsing articles tagged with "debian | Croc-Informatique.fr"
Juil
11
2018

Recréer rc.local sur debian 9

cat <<EOF >/etc/rc.local #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will “exit 0” on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. exit 0 EOF chmod +x /etc/rc.local systemctl daemon-reload systemctl start rc-local systemctl […]

Avr
10
2018

Résoudre problème wifi sur debian 9

  Verifier que ça carte Wifi est bien reconnu : lspci -k | grep -i network 06:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32)         Subsystem: Lite-On Communications Inc QCA6174 802.11ac Wireless Network Adapter         Kernel driver in use: ath10k_pci         Kernel modules: ath10k_pci Modifier le fichier /etc/sources.list Ajouter sur chaque ligne  contrib et non-free nano /etc/apt/sources.list exemple : # Debian Stretch, dépôt principal + paquets non libres deb http://deb.debian.org/debian/ stretch […]