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

11 lines
380 B
Markdown
Raw Permalink Normal View History

2022-01-22 01:31:56 +00:00
## 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
```