Getting my Bluetooth mouse to work with Ubuntu

Bluetooth Mouse From Hell
I have a Microsoft 5000 Bluetooth Mouse. Unfortunately it has been a total headache to get it to work with Ubuntu and stay working. Below are the steps I have taken to remedy the issue:
- Turn on your mouse and make it discoverable
- Open a terminal and enter the command:
hcitool scan - It should return a list of bluetooth devices in range (mine returned something like:
00:1D:D8:92:FE:45 Microsoft Bluetooth Notebook Mouse 5000) - Enter:
sudo gedit /etc/bluetooth/hcid.conf - Add the following entry to the file (remember the name is the same returned in the previous step):
device HardwareAddressHere {
name “Microsoft Bluetooth Notebook Mouse 5000”;
} - Run the command:
sudo /etc/init.d/bluetooth restart - Verify that you get a message indicating that stopping and starting bluetooth is OK
- Run the command:
sudo apt-get install bluez-compat - With your mouse still in discovery mode, run the command:
sudo hidd --search - Your mouse should now be paired and working. (this includes after reboot, it should automatically pair)
Posted by: Heavymeddler
Run Ubuntu on Dell Mini 10 in HD (1366×768)

One Gig Wonder
I found a link on moko's blog that showed how you run Ubuntu Jaunty in 1024x576 on a Dell Mini 10. However, I have the Mini 10 with the HD screen (1366x768) which required a few additional steps to get it work right. Here is the entire process
First, create the file: /etc/apt/sources.list.d/ubuntu-mobile.list
Add the following content and save (these entries will change depending on the version of Ubuntu):
deb http://ppa.launchpad.net/ubuntu-mobile/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/ubuntu-mobile/ppa/ubuntu jaunty main
Open a terminal and run the following two commands:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6598A30
sudo apt-get update
sudo apt-get install psb-kernel-source psb-kernel-headers
Restart your machine and open the terminal again. Enter the command:
sudo apt-get install xserver-xorg-video-psb
Restart your machine again. You should now have 1366x768 resolution.
Posted by: Heavymeddler