diff --git a/Bluetooth.md b/Bluetooth.md new file mode 100644 index 0000000..9276b5d --- /dev/null +++ b/Bluetooth.md @@ -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.[askubuntu.com](https://askubuntu.com/a/6643) + +``` +# modprobe uinput +# service bluetooth restart +# # Cargar cada vez que inicia la máquina +# echo 'uinput' | tee -a /etc/modules +```