SIMULATION - Resize the logical volume vo and its filesystem to 290 MB. Make sure that the filesystem contents remain intact. Note: Partitions are seldom exactly the same size requested, so a size within the range of 260 MB to 320 MiB is acceptable.
Suggested Answer:See explanation below.
df -hT lvextend -L +100M /dev/vg0/vo lvscan xfs_growfs /home/ // home is LVM mounted directory Note: This step is only need to do in our practice environment, you do not need to do in the real exam resize2fs /dev/vg0/vo // Use this comand to update in the real exam df -hT
OR - e2fsck -f/dev/vg0/vo umount /home resize2fs /dev/vg0/vo required partition capacity such as 100M lvreduce -l 100M /dev/vg0/vo mount /dev/vg0/vo /home df ג€"Ht
++ depends on the type of the file system , we should resize it.
XFS >> $ xfs_growfs "mountpoint"
ext2 >> $ resize2fs "lv_path"
upvoted 1 times
...
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
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.
PENNSHARK
10 months, 3 weeks agomaxam20
10 months ago