101-500 question 210 discussion

View all LPIC-1 System Administrator Exam 101, Part 1 of 2, here
back to lpi forum

Question 210

When considering the use of hard links, what are valid reasons not to use hard links?

  • A. Hard links are not available on all Linux systems because traditional filesystems, such as ext4, do not support them
  • B. Each hard link has individual ownership, permissions and ACLs which can lead to unintended disclosure of file content
  • C. Hard links are specific to one filesystem and cannot point to files on another filesystem
  • D. If users other than root should be able to create hard links, suln has to be installed and configured
  • E. When a hard linked file is changed, a copy of the file is created and consumes additional space
Answer:

A

User Votes:
A
50%
B
50%
C 6 votes
50%
D
50%
E 1 votes
50%
Discussions
0 / 1000
daittarn2
2 months ago

C is correct
Hard links only work within the same filesystem. They reference the same inode, which exists only on a single filesystem.

You cannot create hard links across different filesystems or partitions.