This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/Bluetooth.md
2022-01-21 22:31:56 -03:00

11 lines
380 B
Markdown

## 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
```