Jump to content

Android 4.1.1 no Mass Storage mode


sunrat

Recommended Posts

Android 4.1.1 doesn't include USB Mass Storage mode

 

Is anyone affected by this yet, or do you have workarounds? I find it extremely useful and would hate to lose it. MTP is too restricted in functionality; for my Galaxy S2 it only sees pictures on mine. I like to put a few FLAC and ogg files there, which play fine but only can be transferred with USB mass storage.

I currently have Android 4.0.4 and don't want to update if I lose this.

Link to comment
Share on other sites

securitybreach

I personally just use mtpfs which works sort of like the USB mass storage did:

Mtpfs is FUSE filesystem that supports reading and writing from any MTP device. Basically it allows you to mount your device as an external drive.

It's available in the community repository; you can install it by running pacman -S mtpfs.

  • First edit your /etc/fuse.conf and uncomment the following line:

user_allow_other

  • To mount your device

# mtpfs -o allow_other /media/YOURMOUNTPOINT

  • To unmount your device with fuse as regular user

# fusermount -u /media/YOURMOUNTPOINT

  • To unmount your device as root

$ umount /media/YOURMOUNTPOINT

 

Also, you can put them into your ~/.bashrc:

alias android-connect="mtpfs -o allow_other /media/YOURMOUNTPOINT"

alias android-disconnect="fusermount -u /media/YOURMOUNTPOINT"

 

Or, with sudo

alias android-disconnect="sudo umount -u /media/YOURMOUNTPOINT"

https://wiki.archlin...x.php/MTP#mtpfs

 

As far as having the option to use USB storage, this has been disabled on version 4.1

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...