尝试使用 Ubuntu 16.10 桌面诊断 USB 硬件问题

尝试使用 Ubuntu 16.10 桌面诊断 USB 硬件问题

我怀疑我的笔记本电脑的 USB 端口出现故障。插入设备(手机或 GPSr)会启动它们并为手机充电。但是,我无法读取 USB 驱动器或使用 USB 鼠标。有人建议使用 Ubuntu 作为可能能够检查物理端口的工具,因此我将其放在 DVD 上,并且可以启动到 Ubuntu,但这是我在没有帮助的情况下自己能做到的。提前致谢!

答案1

该命令lsusb将提供识别连接到 USB 端口的硬件的输出。例如,如果我将闪存驱动器插入系统上的端口,则会得到如下输出:

$ lsusb
Bus 002 Device 003: ID 8564:1000 Transcend Information, Inc. JetFlash
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 10d5:5a08 Uni Class Technology Co., Ltd 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

要获得更完整的信息,请使用命令lsusb -v

有关总线上特定设备(在本例中为连接的闪存驱动器)的信息,您可以通过 -s 开关指示总线编号和设备编号,如下所示:

$ lsusb -v -s 2:3

Bus 002 Device 003: ID 8564:1000 Transcend Information, Inc. JetFlash
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x8564 Transcend Information, Inc.
  idProduct          0x1000 JetFlash
  bcdDevice            1.00
  iManufacturer           1 JetFlash
  iProduct                2 Mass Storage Device
  iSerial                 3 DYYUB7GB
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         8 Mass Storage
      bInterfaceSubClass      6 SCSI
      bInterfaceProtocol     80 Bulk-Only
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
Device Qualifier (for other device speed):
  bLength                10
  bDescriptorType         6
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  bNumConfigurations      1
Device Status:     0x0000
  (Bus Powered)

我曾经遇到过系统进店时出现的问题,这些问题的唯一原因是端口上布满了灰尘。一罐压缩空气可以轻松解决这个问题。如果有问题的端口是台式机的前面板或后面板端口,您通常只需更换内部线束即可。如果有问题的端口物理连接到主板,这在笔记本电脑中很常见,则需要拆焊/焊接(结果的质量将取决于您的技能,并且不能保证)。如果是芯片组问题,则需要更换主板。

相关内容