当前位置: 技术问答>linux和unix
关于LINUX系统备份的一个小问题..急!在线等!!!
来源: 互联网 发布时间:2016-04-26
本文导语: 小弟现在英国求学 老师今日布置一个作业 题目内容大致如下: 某人使用一个软件进行系统备份,把所有系统中的文件复制。 不幸的是,他发现这个备份进程无休止的运行了下去...备份文件变的越来越大.(比它本...
小弟现在英国求学 老师今日布置一个作业 题目内容大致如下:
某人使用一个软件进行系统备份,把所有系统中的文件复制。
不幸的是,他发现这个备份进程无休止的运行了下去...备份文件变的越来越大.(比它本身应该的大小大)。
进一步检查。他发现了这样一个链接:
/etc/apache/conf -> /etc/apache
请解释为什么这个链接会导致这个问题。
以下是英文原题
Someone is running a system backup using some software that copies all of the files in a
system. Unfortunately, they find that the backup process never seems to end - the backup keeps getting bigger
and bigger (many times bigger than it actually should be. On closer inspection, they find that there is a symbolic
link:
/etc/apache/conf -> /etc/apache
Explain why this is causing a problem.
在线等!!谢谢各位了!!!!!
某人使用一个软件进行系统备份,把所有系统中的文件复制。
不幸的是,他发现这个备份进程无休止的运行了下去...备份文件变的越来越大.(比它本身应该的大小大)。
进一步检查。他发现了这样一个链接:
/etc/apache/conf -> /etc/apache
请解释为什么这个链接会导致这个问题。
以下是英文原题
Someone is running a system backup using some software that copies all of the files in a
system. Unfortunately, they find that the backup process never seems to end - the backup keeps getting bigger
and bigger (many times bigger than it actually should be. On closer inspection, they find that there is a symbolic
link:
/etc/apache/conf -> /etc/apache
Explain why this is causing a problem.
在线等!!谢谢各位了!!!!!
|
看来这个“某人”很强,居然能找出问题所在。
这可能就是一个无穷递归:
1. 当备份软件处理目录/etc/apache/的时候,进入目录,复制其中所有文件;
2. 当处理到/etc/apache/conf的时候,链接到了/etc/apache/,于是又回到了第1步
大概就是这样在第1步和第2步之间无休止的操作下去了……
这可能就是一个无穷递归:
1. 当备份软件处理目录/etc/apache/的时候,进入目录,复制其中所有文件;
2. 当处理到/etc/apache/conf的时候,链接到了/etc/apache/,于是又回到了第1步
大概就是这样在第1步和第2步之间无休止的操作下去了……
|
“蛋生鸡,鸡又生了蛋”
|
如楼上说讲,构成里一个回路,死循环,找不到结尾。
|
不知道linux下什么备份软件会这样复制文件? tar显然不会这样!