Ubuntu Pastebin

Paste from Aladiah at Tue, 7 Apr 2015 17:55:56 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
up vote
1
down vote
	

I have solved the issue with the solution of this post: http://outhereinthefield.wordpress.com/2014/03/01/ubuntu-13-10-and-bluetooth-on-broadcom-bcm43142-wifibt-combo-adapter/

In summary, I have done this steps: List your id:

lsusb

My id is: 0a5c:21d7

Get the file .hex : In your windows partition, get the file BCMxxxx.hex in C:\windows\system32\drivers. If there are two or more files .hex, view which one is in use with windows device manager. Copy this file in your home directory

Open terminal and type these commands:

sudo apt-get install git git clone git://github.com/jessesung/hex2hcd.git cd hex2hcd make ./hex2hcd ../BCMxxxx.xxx.xxx.xx.hex fw-0a5c_21d7.hcd (Replace 0a5c_21d7 with your id) sudo cp fw* /lib/firmware

Reload modules with these commands:

sudo modprobe -r btusb sudo modprobe btusb

Restart your computer.

Open terminal and write:

dmesg | grep firmware

if all right you can view the message:

[ xxxxxxxxxx] Bluetooth: firmware loaded

This is all.

Good luck Diabolik2
Download as text