Answers for "rsync skipping non-regular file"

1

rsync skipping non-regular file

# Error:
rsync skipping non-regular file

# Explanation:
# As mentioned in the source, this error often occurs when trying
# to copy symlinks.

# Solutions:
# - To copy them as symlinks, use --links
# - To copy the files they are pointing to, use --copy-links
# - Use -a instead of -r. -a means to reproduce file hierarchies, 
#	including special files and permissions. -r only means to recurse
#   on directories. For a backup, you want -a.
Posted by: Guest on June-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language