创建用于挂载的文件夹

创建用于挂载的文件夹

我有一台已植根的 Lg L70 ms323,搭载 Android 4.4.2,我想同步 microsd 中的音乐。我使用的是 Ubuntu 14.04。Banshee 播放器同步将音乐放在手机内存的根目录下。

我读到应该为 Banshee 同步过程创建一个 .is_audio_player 文件。我尝试将 .is_audio_player(更多信息见下文)放在内部存储器和 microSD 上,但没有成功。

以下是.is_audio_player内容:

name="BatPhone"
audio_folders= Music/
folder_depth=2
output_formats=audio/mpeg,audio/x-ms-wma,application/ogg
playlist_formats=audio/x-mpegurl,audio/mpeg-url
playlist_path=Playlists/

endoffile=PlaceThisHereToEnsureThereIsABlankSpaceBeforeTheLastLineOfTheFile

答案1

用这个解决了:

创建用于挂载的文件夹

mkdir -p ~/android.devices/

卸载任何设备

fusermount -u /home/`whoami`/android.devices

找到第一个 mtp 设备并挂载

jmtpfs ~/android.devices/ 

同步内容

rsync -rtvuc --delete --progress /home/`whoami`/android.devices/SD\ card/Music /home/`whoami`/Music

卸载设备

fusermount -u /home/`whoami`/android.devices

相关内容