Posso montar / dev / usb / hiddevX como tipo de armazenamento?

0

Eu recebi um HDD externo de um provedor de serviços de TV que seu receptor pode acessar via eSATA + USB (y cable). Ao conectar o dispositivo ao meu computador, recebo:

Isto é 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 é ainda mais a informação do 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 é a informação 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

gato desse dispositivo não revela nada.

Alguma ideia de como posso acessar os dados sem remover esse selo e colocar o disco rígido interno no meu computador? Deve haver um sistema de arquivos em algum lugar. Talvez eu não consiga ler nenhum dado, mas quero ver pelo menos uma device ou uma partição LUKS ou algo assim de algum tipo…

    
por Ben 06.06.2018 / 22:08

1 resposta

0

HID é um dispositivo de interface do usuário. Isso significa muito mais que teclados e mouses. Muitos dispositivos apresentam uma interface HID para seus botões. Outros abusam dele para outros truques e magia internos. Seu dispositivo também está reportando como "baixa velocidade".

A unidade Pace em questão geralmente contém um dispositivo Toshiba SATA, portanto, você deve ser capaz de acessá-lo através da porta eSATA.

    
por 07.06.2018 / 02:55