¿Puedo montar /dev/usb/hiddevX como tipo de almacenamiento?

¿Puedo montar /dev/usb/hiddevX como tipo de almacenamiento?

Obtuve un disco duro externo de un proveedor de servicios de televisión al que su receptor puede acceder a través de eSATA + USB (y cable). Al conectar el dispositivo a mi computadora, aparece:

Este es dmesg:

[290079.510263] usb 1-1.4: new low-speed USB device number 6 using ehci-pci
[290079.624653] usb 1-1.4: New USB device found, idVendor=0bf0, idProduct=c010
[290079.624657] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[290079.624659] usb 1-1.4: Product: EHD100SD
[290079.624661] usb 1-1.4: Manufacturer: Pace
[290079.624664] usb 1-1.4: SerialNumber: 00000000000000
[290079.630804] hid-generic 0003:0BF0:C010.0008: hiddev2,hidraw6: USB HID v1.11 Device [Pace EHD100SD] on usb-0000:00:1a.0-1.4/input0

udevadm:

$ udevadm info --query=all -n /dev/usb/hiddev2
P: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/usbmisc/hiddev2
N: usb/hiddev2
E: DEVNAME=/dev/usb/hiddev2
E: DEVPATH=/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/usbmisc/hiddev2
E: MAJOR=180
E: MINOR=2
E: SUBSYSTEM=usbmisc

Esta es aún más información de udevadm:

$ udevadm info -a -p /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/usbmisc/hiddev2

  looking at device '/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/usbmisc/hiddev2':
    KERNEL=="hiddev2"
    SUBSYSTEM=="usbmisc"
    DRIVER==""

esta es la información del usb:

$ lsusb -v -d 0bf0:c010

Bus 001 Device 006: ID 0bf0:c010 Pace Micro Technology PLC 
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x0bf0 Pace Micro Technology PLC
  idProduct          0xc010 
  bcdDevice            0.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 3 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           41
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          4 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              4 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      51
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10

El gato de ese dispositivo no revela nada.

¿Alguna idea de cómo puedo acceder a los datos que contiene sin quitar ese sello y colocar el disco duro interno en mi computadora? Debe haber un sistema de archivos en alguna parte. Es posible que no pueda leer ningún dato, pero quiero ver al menos una devicepartición LUKS o algo parecido de algún tipo...

Respuesta1

HID es un dispositivo de interfaz de usuario. Eso significa mucho más que teclados y ratones. Muchos dispositivos presentan una interfaz HID para sus botones. Otros lo utilizan indebidamente para otros trucos y magia internos. Su dispositivo también informa como "baja velocidad".

La unidad Pace en cuestión normalmente contiene un dispositivo Toshiba SATA, por lo que debería poder acceder a él a través del puerto eSATA.

información relacionada