sn0m wrote:Hi there
Thanks for your reply and I have registered.I used this options:
mount -t vfat -o shortname=mixed,iocharset=utf8 /dev/sda1 /mnt
rsync --modify-window=1 -rtv --delete /data/mp3/ /mnt/mp3
which I got from this link: http://www.kylev.com/2005/03/29/rsync-and-vfat/
I have obviously changed /dev/sda1 and /mp3 with my respective folders.
However I just can't get it to do anything. All I need is for these two folders to synchronise and basically my calendar and contacts, nothing else.
Anyway, any help is much appreciated.
Regards
Sokol
Hi there,
A few more questions for you I'm afraid 😊
First of all, why are you trying to mount it manually? Isn't GNOME/Nautilus auto-mounting it for you? If not, why not? Did it ever?
Secondly - your calendar and contacts - how are you planning to sync those? I wasn't sure if you meant you thought you'd be doing that by synchronising files too. If you did, it doesn't work that way.
I don't have to issue a mount command because Ubuntu just mounts my phone's memory card automatically when I connect the USB cable.
I have a single script that I run for my phone. It mirrors my desktop podcasts to my memory card. It sucks up any photos and videos I've taken, and it mirrors documents to my phone from a folder I keep on my laptop.
Here's the rsync command I use for my podcasts:
rsync -rltDvh --delete --prune-empty-dirs --progress --size-only --ignore-errors /home/David/Videos/Syndicated/ /media/phonecard/Videos/Podcasts/
The --size-only argument will get around your time-stamp problem, as it will only compare files based on their file size and not their modification date.
It's still troubling me that you're issuing the mount command yourself, it really is best to let the file manager do it for you automatically. The synchronisation issue might be to do with a corruption in the file system, in which case you'd need to reformat. That's a worst case scenario, so don't do it unless we get some more definite idea of what's going on.