AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • Início
  • system&network
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • Início
  • system&network
    • Recentes
    • Highest score
    • tags
  • Ubuntu
    • Recentes
    • Highest score
    • tags
  • Unix
    • Recentes
    • tags
  • DBA
    • Recentes
    • tags
  • Computer
    • Recentes
    • tags
  • Coding
    • Recentes
    • tags
Início / ubuntu / Perguntas / 1454528
Accepted
Dan
Dan
Asked: 2023-02-12 01:18:59 +0800 CST2023-02-12 01:18:59 +0800 CST 2023-02-12 01:18:59 +0800 CST

Como verificar o fabricante do dispositivo bluetooth e instalar drivers para ele no Ubuntu 22.04

  • 772

Estou executando um Ubuntu 22.04 em um laptop MSI CX61 2QC. Estou tendo alguns problemas com o bluetooth e desconfio que podem ser causados ​​por um driver desatualizado, ou mesmo pelo fato de não haver driver para este aparelho para Linux.

Para verificar que tipo de dispositivo bluetooth meu laptop possui, fiz:

dmesg | grep -i blue
[    1.447635] usb 1-1.3: Product: RT Bluetooth Radio
[    2.570559] Bluetooth: Core ver 2.22
[    2.570584] NET: Registered PF_BLUETOOTH protocol family
[    2.570586] Bluetooth: HCI device and connection manager initialized
[    2.570591] Bluetooth: HCI socket layer initialized
[    2.570593] Bluetooth: L2CAP socket layer initialized
[    2.570597] Bluetooth: SCO socket layer initialized
[    2.643774] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
[    2.643780] Bluetooth: hci0: RTL: unknown IC info, lmp subver a5b1, hci rev 0e3d, hci ver 0006
[    2.643783] Bluetooth: hci0: RTL: assuming no firmware upload needed

O Blueetooth parece estar conectado via USB de alguma forma, então fiz:

lsusb
[...]
Bus 001 Device 004: ID 13d3:3394 IMC Networks Bluetooth
[...]

Como posso instalar drivers para isso?

EDITAR

Depois de desabilitar o Windows Fast Boot conforme explicado abaixo, vejo o seguinte em dmesg:

[    1.727956] usb 1-1.3: Product: RT Bluetooth Radio
[    2.668492] Bluetooth: Core ver 2.22
[    2.668518] NET: Registered PF_BLUETOOTH protocol family
[    2.668520] Bluetooth: HCI device and connection manager initialized
[    2.668525] Bluetooth: HCI socket layer initialized
[    2.668527] Bluetooth: L2CAP socket layer initialized
[    2.668533] Bluetooth: SCO socket layer initialized
[    2.840932] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
[    3.784039] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=1200
[    3.784046] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723a_fw.bin
[    4.551112] Bluetooth: hci0: RTL: fw version 0x0e3da5b1
[    4.811045] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.811052] Bluetooth: BNEP filters: protocol multicast
[    4.811057] Bluetooth: BNEP socket layer initialized
[    4.812603] Bluetooth: MGMT ver 1.22
drivers
  • 1 1 respostas
  • 59 Views

1 respostas

  • Voted
  1. Best Answer
    Pilot6
    2023-02-12T01:38:22+08:002023-02-12T01:38:22+08:00

    Este é um dispositivo Realtek. Mais preciso é um Realtek 8723AEchip. Você pode descobrir isso nas mensagens de log com RTLe no código-fonte do kernelbtusb.c

    { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
    

    Estas mensagens mostram que o IC não é bem suportado pelo kernel do Linux:

    [    2.643774] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
    [    2.643780] Bluetooth: hci0: RTL: unknown IC info, lmp subver a5b1, hci rev 0e3d, hci ver 0006
    [    2.643783] Bluetooth: hci0: RTL: assuming no firmware upload needed
    

    Talvez seja necessário algum firmware.

    Minhas sugestões são:

    1. Tente instalar o kernel principal mais recente e verifique como ele funciona lá. Talvez o suporte para este dispositivo já tenha sido adicionado.

    2. Se p.1 não ajudar, relate um bug ao Launchpad executando

       ubuntu-bug linux
      

    Se a instalação for de inicialização dupla com o Windows, desative o recurso Windows Fast Startup e verifique se isso ajuda.

    • 3

relate perguntas

Sidebar

Stats

  • Perguntas 205573
  • respostas 270741
  • best respostas 135370
  • utilizador 68524
  • Highest score
  • respostas
  • Marko Smith

    Existe um comando para listar todos os usuários? Também para adicionar, excluir, modificar usuários, no terminal?

    • 9 respostas
  • Marko Smith

    Como excluir um diretório não vazio no Terminal?

    • 4 respostas
  • Marko Smith

    Como descompactar um arquivo zip do Terminal?

    • 9 respostas
  • Marko Smith

    Como instalo um arquivo .deb por meio da linha de comando?

    • 11 respostas
  • Marko Smith

    Como instalo um arquivo .tar.gz (ou .tar.bz2)?

    • 14 respostas
  • Marko Smith

    Como listar todos os pacotes instalados

    • 24 respostas
  • Martin Hope
    Flimm Como posso usar o docker sem sudo? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    led-Zepp Como faço para salvar a saída do terminal em um arquivo? 2014-02-15 11:49:07 +0800 CST
  • Martin Hope
    ubuntu-nerd Como descompactar um arquivo zip do Terminal? 2011-12-11 20:37:54 +0800 CST
  • Martin Hope
    TheXed Como instalo um arquivo .deb por meio da linha de comando? 2011-05-07 09:40:28 +0800 CST
  • Martin Hope
    Ivan Como listar todos os pacotes instalados 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    David Barry Como determino o tamanho total de um diretório (pasta) na linha de comando? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher "Os seguintes pacotes foram retidos:" Por que e como resolvo isso? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford Como os PPAs podem ser removidos? 2010-07-30 01:09:42 +0800 CST

Hot tag

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • Início
  • Perguntas
    • Recentes
    • Highest score
  • tag
  • help

Footer

AskOverflow.Dev

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve