I have no problem with my USB key devices: there are mounted automatically.
But for the LeapFrog Tag USB device it is not mounted automatically.
So I look in the Ubuntu documentation to mount USB manually.
But fdisk
returns only info about my hard disk, nothing about LeapFrog USB.
$ sudo fdisk -l
Périphérique Amorce Début Fin Blocs Id Système<br>
/dev/sda1 * 2048 606713855 303355904 83 Linux<br>
/dev/sda2 606715902 625141759 9212929 5 Étendue<br>
/dev/sda5 606715904 625141759 9212928 82 partition d'échange Linux / Solaris
I found some commands able to list this USB device:
- lsusb
- udevadm (need unplug the device before using the command and then plug it to see it)
$ lsusb
...
Bus 005 Device 002: ID 0f63:0700 **LeapFrog** Enterprises POGO<br>
and
$ udevadm monitor --udev
monitor will print the received events for:
UDEV - the event which udev sends out after rule processing
UDEV [1915.787445] add /devices/pci0000:00/0000:00:1d.3/usb5/5-2 (usb)
UDEV [1915.796226] add /devices/pci0000:00/0000:00:1d.3/usb5/5-2/5-2:1.0 (usb)
So I hope to be able to mount it with something like:
sudo mount -t ??? /dev/sdb??? /media/leapfrog
How can I know which option and what is the path of the device?
Is there a way to use USB ID from lsusb
?
The easiest way
then plugin ur usb then run
before Usb
After Usb Plugged-in
so now i know my usb is vfat & its sdb1
if its auto mounted and u want to mount it manually 1st run
umount /dev/sdb1
now manually mounting
or make a folder where u want to mount your usb
now usb has been mounted on /media/myusb
also check these links
http://www.draisberghof.de/usb_modeswitch/#contrib
Leapfrog Crammer won't mount as a USB flash drive
This is not a real answer
I just want to record the tasks I'm using to try to solve my problem based on the wiki about Didj given by fossfreedom:
I'm trying to unlock access to the LeapFrog Tag USB:
1- install sg3_util
2- get "some" Leapfrog Didj programs (Didj seems to be an other Leapfrog USB device)
3- searh the programm scsi_custom.c
4a- perhaps program needs to be customized for the Leapfrog TAG instead of the Didj device ? but I don't know what part to be modified.
4b- compile the program scsi_custom.c (with some warning unfortunately)
5- plug the LeapFrog Tag USB and turn it on
to cross-check that the device is well plugged, I do
lsusb
and get something like:6- and here, according to the wiki, I should
$tail -f /var/log/messages
but /var/log/messages does not exist.
Else trying:
-
$ tail -f /var/log/dmesg
does not return much-
$ dmesg | grep -i usb
returns this[20221.960029] usb 5-1: new full speed USB device number 2 using uhci_hcd
-
$ dmesg | grep -i scsi
returns :Note that /dev/sda and /dev/sdb are hard disk, not the USB device that I m looking for.
So I m still unable to know the /dev/sg? for my device.
So I m unable to continue this solution.
I give up:
the only way I found to make this Leapfrog Tag working is to plug it on a Windows XP PC.