I would add to
hicksd8 comments that linking the directory will not help. You need to link each individual item.
For example, if you have directory
/dir/main and link it to
/dir/backup, it will appear to be two copies, but this is two copies of the directory itself, not the content. Deleting a file in
/dir/main will also delete it in
/dir/backup. You need to link:-
- /dir/main/file1 to /dir/backup/file1
- /dir/main/file2 to /dir/backup/file2
- /dir/main/file3 to /dir/backup/file3
If you have subdirectories, you will need to create these and link the files, e.g. having
/dir/main/sub1/fileA means you need to create
/dir/backup/sub1 and then link:-
- /dir/main/sub1/fileA to /dir/backup/sub1/fileA
- /dir/main/sub1/fileB to /dir/backup/sub1/fileB
- /dir/main/sub1/fileC to /dir/backup/sub1/fileC
If this is what you are after, I hope that this means you don't fall into a trap just by linking the directories.
If you are after something else, please explain where we have gone wrong. perhaps you need to review your backup strategy and your access rights if there is such a risk of loss.
Robin