我的 Android 手机的挂载点在哪里?我可以 rsync 它吗?

我的 Android 手机的挂载点在哪里?我可以 rsync 它吗?

我想将我的音乐与我的 Android 手机 (Galaxy Nexus) 进行 rsync,我正在尝试从 shell 中找出要使用的安装路径。该mount命令未显示在手机上。在 Nautilus 中,音乐文件的位置显示为:

gphoto2://[usb:001,009]/Music/foo.mp3

我怎样才能从 shell 安装这个位置?

(我知道 Banshee 和其他音乐播放器。我只想使用简单、可靠、无崩溃的 rsync。)

% cat /etc/issue
Ubuntu 12.04.1 LTS \n \l

% uname -a
Linux guava 3.2.0-35-generic #55-Ubuntu SMP Wed Dec 5 17:42:16 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

答案1

gphoto正在自动挂载您的 Android 设备。要找出实际挂载点的位置,请使用gvfs-mount -l。我相信实际挂载点都位于~/.gvfs

答案2

我有一台三星 Galaxy Tab 2 7.0 平板电脑,它似乎和你的一样。它根本无法自动安装,而且安装方式也不正常。有时我可以正确安装它,但通常看不到任何文件夹内容。

因此,我今天才开始研究它,并发现了一种非常有效的方法,使用这个网站:http://blog.itsbilal.com/index.php/2012/12/connect-an-android-4-0-phonetablet-to-ubuntu-the-reliable-way/

他将其安装在您的主目录的子目录中;对于我的设置,它会创建两个文件夹“Card”和“Tablet”。

存储不在任何通常的位置,但这并不重要。我还没有弄清楚如何使用 fstab 自动挂载它,但我确实创建了两个快捷方式来按需挂载和卸载。如果你想要 Unity 快速列表,有一篇文章这里这可能会有帮助,尽管我没有使用这个。

PS...我相信手机需要解锁才能成功安装。

答案3

我像这样(bash脚本)rsync到我的android:

if [ -n "`lsusb | grep -i Samsung`" ]
then
    phone=`mktemp --directory`
    go-mtpfs $phone &
    sleep 3s
    # Setting -T /tmp even though this is a security risk (/tmp race).
    # Without that rsync fails on renaming .foo to foo for some reason.
    opts="--archive --delete --update --progress -T /tmp"
    rsync $opts ~/from/my/stuff $phone/Card/stuff
    fusermount -u $phone
fi

相关内容