我正在尝试备份两个目录 /etc/httpd 和 /etc/letsencrypt
我正在使用命令
tar Pcfvg httpd_backup.tar /etc/httpd/ /etc/letsencrypt/ >/dev/null
最后重定向到 /dev/null 只是为了调试目的而添加的。
我收到错误
tar: /etc/letsencrypt/live/example.com: Directory is new
这个错误是什么意思?我该如何成功备份目录?
答案1
该-g
选项创建增量备份。
该消息Directory is new
不是错误,它只是一个警告,让您知道存档中添加了一个上一个备份中不存在的新目录。