Refer to the exhibit.
A user attempts to create a file in /backup/snapshots/ but receives an error. What is the most likely cause?
Exhibit
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro) /dev/sda2 on /var type ext4 (rw,relatime) tmpfs on /run type tmpfs (rw,nosuid,nodev) /dev/sdb1 on /backup type ext4 (ro)
Trap 1: The /backup directory does not exist.
The mount point exists; the error is likely not about missing directory.
Trap 2: The user does not have write permission on /backup.
Even with write permissions, the read-only mount prevents writes.
Trap 3: The /backup filesystem is full.
Not indicated; a full filesystem would give a 'no space left' error, but the mount flag is the primary issue.
- A
The /backup filesystem is mounted read-only.
The '(ro)' flag indicates a read-only mount.
- B
The /backup directory does not exist.
Why wrong: The mount point exists; the error is likely not about missing directory.
- C
The user does not have write permission on /backup.
Why wrong: Even with write permissions, the read-only mount prevents writes.
- D
The /backup filesystem is full.
Why wrong: Not indicated; a full filesystem would give a 'no space left' error, but the mount flag is the primary issue.