Partition discover issue

When I plug my android phone into my computer via usb, it doesn't detect the partition on the sdcard directly.

Code:
mount -t msdosfs /dev/da0s1 /mnt/usb
mount_msdosfs: /dev/da0s1: No such file or directory

da0s1 Doesn't exist until I do this:

Code:
mount -t msdosfs /dev/da0 /mnt/usb  
mount_msdosfs: /dev/da0: Invalid argument

Now I can attempt the first mount command again this time it will work.
 
Force a GEOM retaste after connecting it.

Code:
# true > /dev/da0
# mount -t msdosfs /dev/da0s1 /mnt/usb
 
Correct, it got removed in Jelly Bean in favor of MTP. Ice Cream Sandwich should still show up as a umass(4).
 
Back
Top