我在将根文件夹备份到外部驱动器时遇到了一些口是心非的问题。使用的代码是:
sudo duplicity full -v4 --no-encryption --exclude /mnt/ / file:///run/media/jjonker/backup-c/
然后返回:
Local and Remote metadata are synchronized, no sync needed.
Last full backup date: none
Error [Errno 22] Invalid argument getting delta for /proc/1/clear_refs
Error [Errno 22] Invalid argument getting delta for /proc/1/clear_refs
Error [Errno 5] Input/output error getting delta for /proc/1/mem
Error [Errno 5] Input/output error getting delta for /proc/1/mem
Error [Errno 22] Invalid argument getting delta for /proc/1/task/1/clear_refs
Error [Errno 22] Invalid argument getting delta for /proc/1/task/1/clear_refs
Error [Errno 5] Input/output error getting delta for /proc/1/task/1/mem
Error [Errno 5] Input/output error getting delta for /proc/1/task/1/mem
Error [Errno 22] Invalid argument getting delta for /proc/10/clear_refs
Error [Errno 22] Invalid argument getting delta for /proc/10/clear_refs
Error accessing possibly locked file /proc/10/exe
Error [Errno 22] Invalid argument getting delta for /proc/10/task/10/clear_refs
Error [Errno 22] Invalid argument getting delta for /proc/10/task/10/clear_refs
Error accessing possibly locked file /proc/10/task/10/exe
Error [Errno 22] Invalid argument getting delta for /proc/1086/clear_refs
Error [Errno 22] Invalid argument getting delta for /proc/1086/clear_refs
Error [Errno 5] Input/output error getting delta for /proc/1086/mem
Error [Errno 5] Input/output error getting delta for /proc/1086/mem
Killed
我正在运行口是心非版本0.7.17
有什么线索我可以解决这个问题吗?我可以简单地排除 /proc/ 文件夹吗?
谢谢
答案1
是的,
--exclude /proc
应该可以解决问题。口是心非的手册页甚至明确提到了这一点 [1]
如果您正在备份根目录 /,请记住 --exclude /proc,否则口是心非可能会因其中的奇怪内容而崩溃。
..ede/duply.net