LPIC-2 Exam 201 (Linux Engineer) — Question 39
Which of the following commands creates a Btrfs subvolume named volume in/mnt?
Answer options
- A. btrfs subvolume add ""n volume /mnt
- B. btrfs create subvolume /mnt volume
- C. btrfs-subvolume create /mnt/volume
- D. btrfs subvolume new volume /mnt
- E. btrfs subvolume create /mnt/volume
Correct answer: E
Explanation
The correct answer is E, as it properly uses the 'btrfs subvolume create' command followed by the path to where the subvolume should be created. The other options either misuse the command syntax or use incorrect command names, making them invalid for creating a Btrfs subvolume.