LPIC-1 Exam 101 v5 (Linux Administrator) — Question 37
A backup software heavily uses hard links between files which have not been changed in between two backup runs. Which benefits are realized due to these hard links? (Choose two.)
Answer options
- A. The old backups can be moved to slow backup media, such as tapes, while still serving as hard link target in new backups.
- B. The backup runs faster because hard links are asynchronous operations, postponing the copy operation to a later point in time.
- C. The backup is guaranteed to be uncharged because a hard linked file cannot be modified after its creation.
- D. The backup consumes less space because the hard links point to the same data on disk instead of storing redundant copies.
- E. The backup runs faster because, instead of copying the data of each file, hard links only change file system meta data.
Correct answer: D, E
Explanation
The correct answers are D and E because hard links allow the backup to save space by pointing to the same data on disk, preventing redundant copies. Additionally, they streamline the backup process by altering only the file system metadata rather than performing full data copies, thus speeding up the operation. Options A, B, and C do not accurately represent the benefits of hard links in this context.