问题

问题

我在 Ubuntu 22.04 中看不到插入的 USB 驱动器/dev。根据以下回答这个问题,以下是我尝试的方法及其结果:

  • 并且fdisk -l无法lsblk看到 USB 驱动器,
  • 但是,lsusb显示 USB 驱动器已连接到 USB 总线并被识别:
Bus 002 Device 007: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
  • lsusb -v -s 2:7我在附录中链接了完整的输出。
  • 我尝试在插入 USB 驱动器时检查系统日志sudo tail -f /var/log/syslog,以下是输出:
Dec 14 10:45:41 ubuntu kernel: [ 1925.453128] usb 2-1: new SuperSpeed USB device number 7 using xhci_hcd
Dec 14 10:45:41 ubuntu kernel: [ 1925.477932] usb 2-1: New USB device found, idVendor=174c, idProduct=55aa, bcdDevice= 1.00
Dec 14 10:45:41 ubuntu kernel: [ 1925.477945] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
Dec 14 10:45:41 ubuntu kernel: [ 1925.477951] usb 2-1: Product: ASMT105x
Dec 14 10:45:41 ubuntu kernel: [ 1925.477955] usb 2-1: Manufacturer: ASMT
Dec 14 10:45:41 ubuntu kernel: [ 1925.477959] usb 2-1: SerialNumber: 23456789017B
Dec 14 10:45:41 ubuntu kernel: [ 1925.480419] usb-storage 2-1:1.0: USB Mass Storage device detected
Dec 14 10:45:41 ubuntu kernel: [ 1925.480842] usb-storage 2-1:1.0: Quirks match for vid 174c pid 55aa: 400000
Dec 14 10:45:41 ubuntu kernel: [ 1925.481006] scsi host2: usb-storage 2-1:1.0
Dec 14 10:45:41 ubuntu mtp-probe: checking bus 2, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1"
Dec 14 10:45:41 ubuntu mtp-probe: bus: 2, device: 7 was not an MTP device
Dec 14 10:45:41 ubuntu mtp-probe: checking bus 2, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1"
Dec 14 10:45:41 ubuntu mtp-probe: bus: 2, device: 7 was not an MTP device
Dec 14 10:46:03 ubuntu kernel: [ 1947.215397] usb 2-1: reset SuperSpeed USB device number 7 using xhci_hcd

从日志来看,连接 USB 设备时似乎存在问题(bus: 2, device: 7 was not an MTP device)。但是,我不确定这是什么意思。我正在考虑尝试指出的解决方案这里

问题

我的目标只是克隆此 USB 驱动器内容以检索数据,而不是安装它。作为参考,它是一个以 HFS(GUID 分区图)格式化的旧 Mac 磁盘驱动器,并且未加密。

我还能做些什么来检查其数据?


附录

lsusb -v -s 2:7输出:

Bus 002 Device 007: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.10
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         9
  idVendor           0x174c ASMedia Technology Inc.
  idProduct          0x55aa ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
  bcdDevice            1.00
  iManufacturer           2 ASMT
  iProduct                3 ASMT105x
  iSerial                 1 23456789017B
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x002c
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xc0
      Self Powered
    MaxPower                0mA
    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     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15

相关内容