Oh, and one other thing whilst I'm in this thread:
If you're on Linux, then MTP works best with mtpfs: [code] sudo apt-get install mtpfs sudo mkdir /media/Android [/code]
Then to mount the device: [code]mtpfs -o allow_other /media/Android[/code]
And to dismount: [code]fusermount -u /media/Android[/code]
And if you like your Bash aliases: [code] echo "alias android-mount=\"mtpfs -o allow_other /media/Android\"" >> ~/.bashrc echo "alias android-dismount=\"fusermount -u /media/Android\"" >> ~/.bashrc source ~/.bashrc [/code]
Then it's as simple as: [code] android-mount android-dismount [/code]
@Velocio started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
Oh, and one other thing whilst I'm in this thread:
If you're on Linux, then MTP works best with mtpfs:
[code]
sudo apt-get install mtpfs
sudo mkdir /media/Android
[/code]
Then to mount the device:
[code]mtpfs -o allow_other /media/Android[/code]
And to dismount:
[code]fusermount -u /media/Android[/code]
And if you like your Bash aliases:
[code]
echo "alias android-mount=\"mtpfs -o allow_other /media/Android\"" >> ~/.bashrc
echo "alias android-dismount=\"fusermount -u /media/Android\"" >> ~/.bashrc
source ~/.bashrc
[/code]
Then it's as simple as:
[code]
android-mount
android-dismount
[/code]