Essentially use rsync to sync folders between multiple machines which in this case the host machine with the music files and the mobile phone storage.
rsync ~/Music /media/disk/Music -rP
For podcasts it'll be a good idea to use cronjob to download new podcasts. I'm using a remote server to download them.
# On my remote server
sudo apt-get install podget
# crontab -e on server
0 * * * * /usr/bin/podget -s
# On my local host machine with mobile phone plugged in
rsync username@remote-server:./Music/Podcasts /media/disk/Podcasts -rP
No comments:
Post a Comment