D
Size: a a a
D
s
D
s
腫
腫
D
l
S
G
D
D
sudo systemctl stop bluetoothЯ вот так исправляю
sudo modprobe -r ath9k
sudo modprobe ath9k
sudo systemctl start bluetooth
s
D
G
D
sudo systemctl stop bluetoothЯ вот так исправляю
sudo modprobe -r ath9k
sudo modprobe ath9k
sudo systemctl start bluetooth
#!/usr/bin/env bash
SLUG="${1}"
if [[ "${SLUG}" == "wifi" ]]; then
sudo systemctl stop NetworkManager
sudo modprobe -r ath9k
sudo modprobe ath9k
sudo systemctl start NetworkManager
elif [[ "${SLUG}" == "bt" ]]; then
sudo systemctl stop bluetooth
sudo modprobe -r ath9k
sudo modprobe ath9k
sudo systemctl start bluetooth
fi
s
D
s