From the course: CompTIA Linux+ (XK0-005) Cert Prep
Unlock the full course today
Join today to access over 24,900 courses taught by industry experts.
Troubleshoot storage systems - Linux Tutorial
From the course: CompTIA Linux+ (XK0-005) Cert Prep
Troubleshoot storage systems
- [Lecturer] Troubleshooting storage issue starts with making sure you are not out of space. For this, use the df and du tools. df shows the overall storage space usage of a mounted volume. Type in df -hT and hit Enter. The -h provides human readable sizes and the capital T shows the file system type. du on the other hand can tell you the size of a directory. du is especially good at finding files that take up a lot of space. (keyboard clicking) du requires an argument. Type in du -h ~ and hit Enter. The -h again shows human readable sizes in megabytes, gigabytes, et cetera. If you're experiencing slow disk performance, it may be due to the drive not being able to handle the number of I/O operations that have been requested. You can use the iostat command to analyze this. If it's not installed, install the sysstat package to get it. (keyboard clicking) Type in sudo dnf install -y sysstat and hit Enter. To show…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
-
-
-
-
-
Linux storage system overview9m 13s
-
(Locked)
Prepare for handling storage1m 36s
-
(Locked)
Create partitions using fdisk5m 4s
-
(Locked)
Create partitions using parted3m 59s
-
(Locked)
Manage LVM volumes and volume groups7m 25s
-
(Locked)
Expand existing logical volumes2m 47s
-
(Locked)
Reduce existing logical volumes3m 37s
-
(Locked)
Create EXT filesystems4m 20s
-
(Locked)
Repair EXT filesystems5m 15s
-
(Locked)
Create and repair XFS filesystems1m 52s
-
(Locked)
MDRAID or DMRAID?1m 43s
-
(Locked)
Create a RAID 5 using LVM7m 1s
-
(Locked)
Create RAIDs using mdadm9m 31s
-
(Locked)
Mount filesystems on boot5m 54s
-
(Locked)
Encrypt drives with LUKS2m 42s
-
(Locked)
Troubleshoot storage systems4m 18s
-
-
-
-
-
-
-
-
-
-
-
-
-