ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 97 - XK0-005 discussion

Report
Export

A Linux system is getting an error indicating the root filesystem is full. Which of the following commands should be used by the systems administrator to resolve this issue? (Choose three.)

A.
df -h /
Answers
A.
df -h /
B.
fdisk -1 /dev/sdb
Answers
B.
fdisk -1 /dev/sdb
C.
growpart /dev/mapper/rootvg-rootlv
Answers
C.
growpart /dev/mapper/rootvg-rootlv
D.
pvcreate /dev/sdb
Answers
D.
pvcreate /dev/sdb
E.
lvresize -L +10G -r /dev/mapper/rootvg-rootlv
Answers
E.
lvresize -L +10G -r /dev/mapper/rootvg-rootlv
F.
lsblk /dev/sda
Answers
F.
lsblk /dev/sda
G.
parted -l /dev/mapper/rootvg-rootlv
Answers
G.
parted -l /dev/mapper/rootvg-rootlv
H.
vgextend /dev/rootvg /dev/sdb
Answers
H.
vgextend /dev/rootvg /dev/sdb
Suggested answer: A, C, E

Explanation:

The administrator should use the following three commands to resolve the issue of the root filesystem being full:

df -h /. This command will show the disk usage of the root filesystem in a human-readable format. The df command is a tool for reporting file system disk space usage. The -h option displays the sizes in powers of 1024 (e.g., 1K, 234M, 2G). The / specifies the root filesystem. The command df -h / will show the total size, used space, available space, and percentage of the root filesystem. This command will help the administrator identify the problem and plan the solution.

growpart /dev/mapper/rootvg-rootlv. This command will grow the partition that contains the root filesystem to the maximum size available. The growpart command is a tool for resizing partitions on Linux systems. The /dev/mapper/rootvg-rootlv is the device name of the partition, which is a logical volume managed by the Logical Volume Manager (LVM). The command growpart /dev/mapper/rootvg-rootlv will extend the partition to fill the disk space and increase the size of the root filesystem. This command will help the administrator solve the problem and free up space.

lvresize -L +10G -r /dev/mapper/rootvg-rootlv. This command will resize the logical volume that contains the root filesystem and add 10 GB of space. The lvresize command is a tool for resizing logical volumes on Linux systems. The -L option specifies the new size of the logical volume, in this case +10G, which means 10 GB more than the current size. The -r option resizes the underlying file system as well. The /dev/mapper/rootvg-rootlv is the device name of the logical volume, which is the same as the partition name. The command lvresize -L +10G -r /dev/mapper/rootvg-rootlv will increase the size of the logical volume and the root filesystem by 10 GB and free up space. This command will help the administrator solve the problem and free up space.

The other options are incorrect because they either do not affect the root filesystem (fdisk -1 /dev/sdb, pvcreate /dev/sdb, lsblk /dev/sda, or vgextend /dev/rootvg /dev/sdb) or do not use the correct syntax (fdisk -1 /dev/sdb instead of fdisk -l /dev/sdb or parted -l /dev/mapper/rootvgrootlv instead of parted /dev/mapper/rootvg-rootlv print). Reference: CompTIA Linux+ (XK0-005) Certification Study Guide, Chapter 10: Managing Storage, pages 318-319, 331-332.

asked 02/10/2024
Emanuele Facchini
30 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first