From eded730ad5852b7ef8ead7fd96566b828f174815 Mon Sep 17 00:00:00 2001 From: Nulo Date: Fri, 21 Jan 2022 22:31:56 -0300 Subject: [PATCH] Bluetooth --- Bluetooth.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Bluetooth.md 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 +```