remav wrote:I done that, after restart same behavior, BT mouse is not working. I noticed that if I disable and enable the BT on computer the mouse is working after this.
Ok that helps.
Try this before I prepare a simple script for you.
When the mouse is working open terminal and write
- Code:
sudo rmmod bluetooth
Does the bluetooth stop working?
Then do
- Code:
sudo modprobe bluetooth
Does the bluetooth and the mouse spring to life?
If yes we have two options.
The first one is to follow my previous guide, but replace the word "btsub" with "bluetooth" (without the quotes).
The second method, and probably more effective is to create a script which will load at startup.
Open terminal and write:
- Code:
sudo gedit home/yourusername/btmousestart.sh
(replace with your user name).
A file will open. Copy and paste the following text inside
#!/bin/bash
sudo rmmod bluetooth
sudo modprobe bluetooth
exit 0
Save, exit.
Then in terminal again write
- Code:
sudo chmod a+x /home/yourusername/btmousestart.sh
By doing this we give executable rights to the file we created.
Then, open startup applications, click on "add", and in the command line type
- Code:
/home/yourusername/btmousestart.sh
Give it a name, like "bluetooth usb start", save, exit, reboot and see if that worked.