Implement Advanced Storage Features Flashcards
What next generation volume management solution was introduced in RedHat 8?
stratis
(Uses thin provisioning by default)
How can you install the stratis package?
yum/dnf install stratis-cli stratisd
How can you enable and start the stratis service?
systemctl enable|start stratisd
How can you add 2 x 5G new disks from virtualization software and verify at the OS level?
oracle virtualbox storage setting
lsblk
How can you create a new stratis pool and verify that it was created?
stratis pool create pool1 /dev/sdb
stratis pool list
How can you extend the stratis pool?
stratis pool add-data pool1 /dev/sdc
stratis pool list
How can you create a new file system using stratis?
stratis filesystem create pool1 fs1
stratis pool list
How can you create a directory for mount point and mount file system?
mkdir /bigdata
mount /stratis/pool1/fs1 /bigdata
lsblk
How can you create a snapshot of your filesystem using stratis?
stratis filesystem snapshot pool1 fs1 fs1-snap
stratis filesystem list
How can you add the entry to /etc/fstab to mount at boot?
UUID=”…” /bigdata xfs defaults,x-systemd.requires=stratisd.service 0 0
Note: You get the UUID from command:
stratis filesystem list