You are reading a single comment by @Velocio and its replies. Click here to read the full conversation.
  • 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]

About

Avatar for Velocio @Velocio started