1Z0-460 · Question #62
What does the following btrfs command do? $ sudo btrfs subvolume snapshot src src-01
The correct answer is D. Creates a snapshot of the src subvolumes in src-01. To create a snapshot use sudo btrfs subvolume snapshot /mnt/@ /mnt/@_snapshot this will create a snapshot of the @ subvolume named @_snapshot located also in the top of the btrfs tree. btrfs subvolume snapshot <source> [<dest>/]<name> Create a writable snapshot of the subvolume…
Question
What does the following btrfs command do? $ sudo btrfs subvolume snapshot src src-01
Options
- ACreates snapshots of the src src-01 subvolumes
- BCreates a snapshot of the src-01 subvolumes in src
- CCreates the src and src-01 subvolumes and takes a snapshot of these subvolumes
- DCreates a snapshot of the src subvolumes in src-01
How the community answered
(47 responses)- A9% (4)
- B15% (7)
- C4% (2)
- D72% (34)
Explanation
*To create a snapshot use sudo btrfs subvolume snapshot /mnt/@ /mnt/@_snapshot this will create a snapshot of the @ subvolume named @_snapshot located also in the top of the btrfs tree. *btrfs subvolume snapshot <source> [<dest>/]<name> Create a writable snapshot of the subvolume <source> with the name <name> in the <dest> directory.
Topics
Community Discussion
No community discussion yet for this question.