I just got a PAP-KIII game console, which inside is running some version of linux, dingux, maybe, but probably irrelevant to the problem. It is supposed to be mountable as a usb drive on the computer, but it is not working (surprise). When the device is plugged in to the usb port, it automatically goes into usb drive mode, there is nothing else to do on the device itself. But the computer does not recognize it.
dmesg output:
lsusb sees it:
but sudo blkid does not see it at all.
I tired setting up a udev rule, but maybe I didn't do it right:
The link does show up in /dev. Maybe (probably) there is more to it, but for now I'm stuck.
Also tried sudo modprobe usb-storage but this made no difference.
dmesg output:
Code:
[ 198.008025] usb 1-5: new high-speed USB device number 7 using ehci-pci [ 199.128021] usb 1-5: device descriptor read/64, error -71 [ 199.392916] usb 1-5: New USB device found, idVendor=0525, idProduct=a4a5 [ 199.392919] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 199.392921] usb 1-5: Product: File-backed Storage Gadget [ 199.392923] usb 1-5: Manufacturer: Linux 2.6.31.3 with musb_hdrc [ 199.392925] usb 1-5: SerialNumber: 3230204E6F76 [ 204.511218] usb 1-5: can't set config #1, error -110
Code:
Bus 001 Device 007: ID 0525:a4a5 Netchip Technology, Inc. Pocketbook Pro 903
I tired setting up a udev rule, but maybe I didn't do it right:
Code:
greenman@Crynfyd18.04 /etc/udev/rules.d$ cat 51-papk3.rules SUBSYSTEM=="usb",ATTR{idVendor}=="0525", ATTR{idProduct}=="a4a5", MODE="666",SYMLINK+="PAP-KIII"
Also tried sudo modprobe usb-storage but this made no difference.
Comment