Bluetooth

This commit is contained in:
Cat /dev/Nulo 2022-01-21 22:31:56 -03:00
parent 4ba5487d18
commit eded730ad5
1 changed files with 10 additions and 0 deletions

10
Bluetooth.md Normal file
View File

@ -0,0 +1,10 @@
## Activar botones multimedia Bluetooth en Linux
Por alguna razón, tenemos que específicamente cargar un modulo de kernel (`uinput`) antes que el daemon de Bluetooth para que funcione.<sup>[askubuntu.com](https://askubuntu.com/a/6643)</sup>
```
# modprobe uinput
# service bluetooth restart
# # Cargar cada vez que inicia la máquina
# echo 'uinput' | tee -a /etc/modules
```