Which three statements could you use to mount the DocumentsSV_Tuesday_Backup path on the /restored_backup mount point?

You have a btrfs file system mounted on the /btrfs mount point:
btrfs filesystem show
Label: ‘Btrfs’uuid:7bfe3239-47ee-442b-b9f8-49f88b6b1 be4 Total devices 2 FS bytes used 200.37MB devid 2 size 4.88GB used 1.51GB path /dev/sdd devid 1 size 4.88GB used 1.51GB path/dev/sdc
You have a list of subvolumes and snapshots:
btrfs subvolume list -pgct /btrfs/DocumentsSV ID
gen cgen
parent
top level
path 268
0
5
5
DocumentsSV
192.0.
141
5
5DocumentsSV_Moday_Backup
270
141
140
5
5
DocumentsSV_T uesday_Backup
78 143
192.1. 5
5
DocumentsSV_Wednesday_Backup
272
192.2. 143 5
5
DocumentsSV_Wednesday_Backup_2

Which three statements could you use to mount the DocumentsSV_Tuesday_Backup path on the /restored_backup mount point?

You have a btrfs file system mounted on the /btrfs mount point:
btrfs filesystem show
Label: ‘Btrfs’uuid:7bfe3239-47ee-442b-b9f8-49f88b6b1 be4 Total devices 2 FS bytes used 200.37MB devid 2 size 4.88GB used 1.51GB path /dev/sdd devid 1 size 4.88GB used 1.51GB path/dev/sdc
You have a list of subvolumes and snapshots:
btrfs subvolume list -pgct /btrfs/DocumentsSV ID
gen cgen
parent
top level
path 268
0
5
5
DocumentsSV
192.0.
141
5
5DocumentsSV_Moday_Backup
270
141
140
5
5
DocumentsSV_T uesday_Backup
78 143
192.1. 5
5
DocumentsSV_Wednesday_Backup
272
192.2. 143 5
5
DocumentsSV_Wednesday_Backup_2

Which three statements could you use to mount the DocumentsSV_Tuesday_Backup path on the /restored_backup mount point?

A.
mount LABEL=Btrfs -o subvol=DocumentsSV_Tuesday_Backup /restored_backup

B.
mount LABEL=Btrfs -o subvol=DocumentsSV /restored_backup

C.
mount LABEL=Btrfs -o subvolid=140 /restored_backup

D.
mount /btrfs/DocumentsSV_Tuesday_Backup/restored_backup

E.
mount LABEL=Btrfs -o subvolid=270 /restored_backup

F.
btrfs subvolume set-default 270 /btrfs; mount LABEL=Btrfs /restored_backup



Leave a Reply 2

Your email address will not be published. Required fields are marked *


some.guy

some.guy

A E F

Mounting subvolumes requires the specification of the subvolid (name or number). An unspecified subvolid assumes the default (usually 0).