Quote:
Originally Posted by
vistastar
Odd... I don't know why it's mounting it as read-only.
It's entirely possible that you just don't have permissions to access it, though. FAT32 has no owners or groups, so it just assumes root. Try
mount -o uid=myuid,rw -t vfat /dev/whatever /path/to/dir where 'myuid' is your user id like in /etc/passwd.
Quote:
Is it necessary use 'sync' command before umount?
Nope, umount
sync's by itself. umount by itself leaves a drive in a state that's safe to shut down or remove or what have you.
Quote:
Is it necessary use 'eject' command after umount?
Nope.
eject just an extended
umount that ejects the tray when it's done syncing and unmounting -- which only makes sense for things that
have a tray, like cdrom drives.