Implement Advanced Storage Features Flashcards

1
Q

What next generation volume management solution was introduced in RedHat 8?

A

stratis
(Uses thin provisioning by default)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can you install the stratis package?

A

yum/dnf install stratis-cli stratisd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you enable and start the stratis service?

A

systemctl enable|start stratisd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you add 2 x 5G new disks from virtualization software and verify at the OS level?

A

oracle virtualbox storage setting
lsblk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you create a new stratis pool and verify that it was created?

A

stratis pool create pool1 /dev/sdb
stratis pool list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How can you extend the stratis pool?

A

stratis pool add-data pool1 /dev/sdc
stratis pool list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How can you create a new file system using stratis?

A

stratis filesystem create pool1 fs1
stratis pool list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can you create a directory for mount point and mount file system?

A

mkdir /bigdata
mount /stratis/pool1/fs1 /bigdata
lsblk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you create a snapshot of your filesystem using stratis?

A

stratis filesystem snapshot pool1 fs1 fs1-snap
stratis filesystem list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you add the entry to /etc/fstab to mount at boot?

A

UUID=”…” /bigdata xfs defaults,x-systemd.requires=stratisd.service 0 0

Note: You get the UUID from command:
stratis filesystem list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly