I do not know when it started, but when I do my rsync backups to an external USB drive, I now get the message
IO error encountered -- skipping file deletion
The dumb program does not even have the decency to tell me what files it wants to delete!
The script is:
#
rsync --delete -av \
--exclude "lost+found" \
--exclude ".gvfs" \
--exclude ".Trash-1000" \
--exclude ".mozilla/firefox/*.default/Cache"\
--exclude ".kde/share/apps/amarok/albumcovers/cache"\
--exclude ".local/share/Trash" \
--exclude .xnview/cache/ \
--exclude .thumbnails/ \
--exclude travel_pix/ \
--exclude mp3/ \
--exclude tmp/ \
--exclude tmp_pix/ \
--exclude .mozilla-thunderbird/ \
--exclude .mozilla/ \
--exclude .adobe/ \
--exclude .macromedia/ \
--exclude *.ERR \
/home/jon /media/jon_bak_3/home_jon \
2>bak_homejonsansmoz3.ERR
(It's not really a script, as it is not executable. I run it with . script-name.)
I checked dmesg afterwards, which told me
[ 5258.879165] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
so I ran es2fsck, which told me (almost instantly) that the file system is clean. (Yes, I unmounted it first.)
Such problems have been discussed on the Ubuntu forum, but seemed to revolve around a directory called .gvfs. I have deleted this and the problem persists.
Anyone have any ideas? I do not like to have any problems at all when I am doing backups, especially unexplained ones.
Thanks in advance.
IO error encountered -- skipping file deletion
The dumb program does not even have the decency to tell me what files it wants to delete!
The script is:
#
rsync --delete -av \
--exclude "lost+found" \
--exclude ".gvfs" \
--exclude ".Trash-1000" \
--exclude ".mozilla/firefox/*.default/Cache"\
--exclude ".kde/share/apps/amarok/albumcovers/cache"\
--exclude ".local/share/Trash" \
--exclude .xnview/cache/ \
--exclude .thumbnails/ \
--exclude travel_pix/ \
--exclude mp3/ \
--exclude tmp/ \
--exclude tmp_pix/ \
--exclude .mozilla-thunderbird/ \
--exclude .mozilla/ \
--exclude .adobe/ \
--exclude .macromedia/ \
--exclude *.ERR \
/home/jon /media/jon_bak_3/home_jon \
2>bak_homejonsansmoz3.ERR
(It's not really a script, as it is not executable. I run it with . script-name.)
I checked dmesg afterwards, which told me
[ 5258.879165] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
so I ran es2fsck, which told me (almost instantly) that the file system is clean. (Yes, I unmounted it first.)
Such problems have been discussed on the Ubuntu forum, but seemed to revolve around a directory called .gvfs. I have deleted this and the problem persists.
Anyone have any ideas? I do not like to have any problems at all when I am doing backups, especially unexplained ones.
Thanks in advance.
Comment