就是我在linux下做增量备份的时候
老是提示我
remove the '/' from the member names
知道怎么回事吗?
具体是这样的
在home下建立一个新目录backup
1,先对/etc做一个完全备份
tar -zcvf /home/backup/etc.full.tar.gz /etc
2,找出/etc下7天以来变化的文件
find /etc -mtime -7 -print > /home/filelist
3,对这些变化做个增量备份
tar -c -T /home/filelist -f /home/backup/etc.add.tar.gz
执行了这句后就提示remove the '/' from the member names