Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam EX200 Topic 5 Question 36 Discussion

Actual exam question for RedHat's EX200 exam
Question #: 36
Topic #: 5
Part 2 (on Node2 Server)
Task 7 [Implementing Advanced Storage Features]
Create a thin-provisioned filesystem with the name think_fs from a pool think_pool using the devices.
The filesystem should be mounted on /strav and must be persistent across reboot

Suggested Answer:

* [root@node2 ~]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
vdd 252:48 0 5G 0 disk
vde 252:64 0 10G 0 disk
└─vdo1 253:4 0 50G 0 vdo /vbread
[root@node2 ~]# yum install stratis* -y
[root@node2 ~]# systemctl enable --now stratisd.service
[root@node2 ~]# systemctl start stratisd.service
[root@node2 ~]# systemctl status stratisd.service
[root@node2 ~]# stratis pool create think_pool /dev/vdd
[root@node2 ~]# stratis pool list
Name Total Physical Properties
think_pool 5 GiB / 37.63 MiB / 4.96 GiB ~Ca,~Cr
* [root@node2 ~]# stratis filesystem create think_pool think_fs
[root@node2 ~]# stratis filesystem list
Pool Name Name Used Created Device UUID
think_pool think_fs 546 MiB Mar 23 2021 08:21 /stratis/think_pool/think_fs ade6fdaab06449109540c2f3fdb9417d
[root@node2 ~]# mkdir /strav
[root@node2 ~]# lsblk
[root@node2 ~]# blkid
/dev/mapper/stratis-1-91ab9faf36a540f49923321ba1c5e40d-thin-fs-ade6fdaab06449109540c2f3fdb9417d: UUID="ade6fdaa-b064-4910-9540-c2f3fdb9417d" BLOCK_SIZE="512" TYPE="xfs"
* [root@node2 ~]# vim /etc/fstab
UUID=ade6fdaa-b064-4910-9540-c2f3fdb9417d /strav xfs defaults,x-systemd.requires=stratisd.service 0 0
[root@node2 ~]# mount /stratis/think_pool/think_fs /strav/
[root@node2 ~]# df -hT
/dev/mapper/stratis-1-91ab9faf36a540f49923321ba1c5e40d-thin-fs-ade6fdaab06449109540c2f3fdb9417d xfs 1.0T 7.2G 1017G 1% /strav

by whitebeard pirate at Dec 08, 2024, 04:07 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
whitebeard pirate
2024-12-29 04:19:54
dev/stratis/thin_pool/thin_fs /strav xfs defaults,x-systemd-requires=stratisd.service 0 0
or
dev/stratis/thin_pool/thin_fs /strav xfs defaults 0 0
upvoted 1 times
...
whitebeard pirate
2024-12-24 03:23:23
dnf -y install stratis*
systemctl enable stratisd
systemctl start stratisd
stratis pool create thin_pool /dev/sdc
stratis filesystem create thin_pool thin_fs
mkdir -p /strav
stratis filesystem list (retrieve the UUID for the thin_fs filesystem
mount stratis/thin_pool/thin_fs /strav
nanp /etc/fstab
stratis/thin_pool/thin_fs /strav xfs defaults 0 0
or
UUID=XXXXXXXXXX /strav xfs defaults 0 0
upvoted 1 times
...
whitebeard pirate
2024-12-08 16:07:28
lsblk (select a free disk eg vdd)
dnf -y install stratis*
systemctl enable stratisd
systemctl start stratisd
stratis pool create think_pool /dev/vdd
stratis filesystem create think_pool think_fs
mkdir /strav
mount /stratis/thin_pool/think_fs /strav
mount -a
blkid (get the UID of the think_fs)
nano /etc/fstab
UUID=ade6fdaa-b064-4910-9540-c2f3fdb9417d /strav xfs defaults,x-systemd.requires-stratisd.service 0 0
upvoted 1 times
...
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.