GNU/Linux >> Linux の 問題 >  >> Ubuntu

私のBluetoothはUbuntu14.10で無効になっていますか?

最近ubuntu14.10をインストールしましたが、wifiとbluetoothの両方が機能していないことがわかりました。
Wi-Fiを取り戻すことができましたが、bluetoothはまだ無効になっています。助けが必要です。たくさんの投稿を見ましたが、問題を解決できるものは何も見つかりませんでした。

hcitool dev —出力
デバイス:

承認された回答:

デバイスが機能するにはファームウェアが必要です

wget https://www.dropbox.com/s/bor5hy8djhztpsf/fw-04ca_200b.hcd
sudo cp fw-04ca_200b.hcd /lib/firmware
sudo cp fw-04ca_200b.hcd /lib/firmware/brcm

再起動して試してください

編集:wget https://www.dropbox.com/s/dnlvxmw5l7mwn2d/bluetooth.tar.gz

tar -zxvf bluetooth.tar.gz

ホームフォルダにbluetoothという名前のフォルダを作成してから、cd bluetooth 次に、いくつかのファイルをダウンロードする必要がありますsudo apt-get install linux-headers-generic build-essential

次に、現在の構成からファイルをコピーします

cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers

cp /boot/config-$(uname -r) .config

これで、モジュールを作成できます

make -C /lib/modules/$(uname -r)/build M=$PWD modules

次に、現在のモジュールをアンロードします

sudo modprobe -r btusb

で新しいものをコピーします

sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/

そして、モジュールsudo modprobe btusbをテストして挿入する時が来ました。 運が良ければ、Bluetoothは正常に機能しますが、再起動しない場合は機能します。

更新して再起動後にBluetoothが機能しない場合は、cd bluetooth

make -C /lib/modules/$(uname -r)/build M=$PWD clean
cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
cp /boot/config-$(uname -r) .config
make -C /lib/modules/$(uname -r)/build M=$PWD modules
sudo modprobe -r btusb
sudo cp btusb.ko /lib/modules/$(uname -r)/kernel/drivers/bluetooth/
sudo modprobe btusb

Ubuntu
  1. BluetoothはUbuntu14.04で無効になっていますか?

  2. Ubuntu 20.04でのDockerの問題?

  3. BluetoothがUbuntu13.10で動作しませんか?

  1. Ubuntuログインループ14.04?

  2. Ubuntu で Bluetooth を再起動するにはどうすればよいですか?

  3. Ubuntu に Qt をインストールする

  1. Ubuntu18.04にDockerをインストールする方法

  2. Ubuntu18.04にApacheをインストールする方法

  3. Ubuntu18.04にMariaDB10.4をインストールする方法