203: Filesystem and Devices
203.1 Operating the Linux filesystem (weight: 4)
Candidates should be able to properly configure and navigate the standard Linux filesystem. This objective includes configuring and mounting various filesystem types.
Key Knowledge Areas:
The concept of the fstab configuration
Tools and utilities for handling swap partitions and files
Use of UUIDs for identifying and mounting file systems
Understanding of systemd mount units
The following is a partial list of the used files, terms and utilities:
/etc/fstab
/etc/mtab
/proc/mounts
mount and umount
blkid
sync
swapon
swapoff
Mounting Filesystems
mount
: Mount a filesystem
-a
Mount all filesystems in /etc/fstab
-F
With the -a option, mount in parallel
-n
Mount without writing in /etc/mtab
-o
Use the specified mount options
-t
Specify the filesystem type
-U
Mount a partition by UUID
-v
Increase verbosity
umount
: Unmount a filesystem
-a
Unmount filesystems described in /etc/mtab
-t
Act only on filesystem type specified
-f
Force an unmount
-n
Unmount without writing to /etc/mtab
-v
Increase verbosity
sync
: Synchronize cached writes to persistent storage
blkid
: Command line utility to locate and print block device attributes. It has two main forms of operation: either searching for a device with a specific NAME=value pair or displaying NAME=value pairs for one or more devices.
/etc/fstab
: Static information about the filesystem
/etc/mtab
: The programs mount and umount traditionally maintained a list of currently mounted filesystems in/etc/mtba
. For modern systems,/etc/mtab
is a symlink to/proc/mounts
(or/proc/self/mounts
)./proc/mounts
: Part of the proc virtual filesystem that presents data from the kernel about the mounted filesystems on the host. Can be a symlink toproc/self/mounts
.
Linux Swap Space
Swap space is used as a substitute for physical memory (RAM) when the physical memory is full. This is helpful for systems with small amounts of memory but is not a substitute for adding additional RAM (because of inefficiency is speed). Swap space can be a dedicated partition or file (or both). The /proc/swaps
file can be viewed to determine the amount of swap in use.
swapon/swapoff
: Enable or disable devices and files for paging and swapping.
-a
Enable all devices marked swap in /etc/fstab
-o
Specify swap options
-p
Specify the priority of the device
-s
Display swap usage summary by device
--show
Display a definable table of swap areas
-v
Increase verbosity
mkswap
: Set up a Linux swap area.
Systemd Mount Units
A systemd mount unit is a unit configuration file that ends in ".mount" and encodes information about a file system mount point controlled and supervised by Systemd.
Systemd automatically creates unit files for all the entries in /etc/fstab
. These are in /run/systemd/generator/
. Mount units can be manually created, but it is generally advised to add entries to etc/fstab
.
cat /run/systemd/generator/mnt-my.mount
203.2 Maintaining a Linux filesystem (weight: 3)
Candidates should be able to properly maintain a Linux filesystem using system utilities. This objective includes manipulating standard filesystems and monitoring SMART devices.
Key Knowledge Areas:
Tools and utilities to manipulate and ext2, ext3 and ext4
Tools and utilities to perform basic Btrfs operations, including subvolumes and snapshots
Tools and utilities to manipulate XFS
Awareness of ZFS
The following is a partial list of the used files, terms and utilities:
mkfs (mkfs.*)
mkswap
fsck (fsck.*)
tune2fs, dumpe2fs and debugfs
btrfs, btrfs-convert
xfs_info, xfs_check, xfs_repair, xfsdump and xfsrestore
smartd, smartctl
Ext2/3/4 and XFS Filesystems
ext2
Developed to overcome some of the limitation of the original ext filesystem.
Max file size ranges from 16GB to 2 TB.
Max filesystem size ranges from 2 TB to 32 TB.
Supports 32,000 subdirectories.
Recommended for flash-based storage becase of the absence of overhead caused by journaling.
Can be directly converted to ext3.
ext3
Many of the base features remain the same as ext2.
Introduces a dedicated space for journaling.
Journaling levels:
Journal - Metadata and content are written to the journal.
Ordered (default) - Only metadata is written to the journal. Content is written before metadata is committed.
Writeback - Only metadata is written to the journal. Content may be written before or after metadata is commited.
Supports online filesystem growth.
Introduces HTree indexing for larger directories.
ext4
Max file size increase to 16 TB.
Max filesystem increase to 1 Exabyte.
Support a virtually unlimited number of subdirectories.
Introduces journal checksums as well as several other imporovements to reliability and performance.
Support backwards compatibility for ext2 and ext3.
Utilities for the EXT Filesystem
mkfs (mkfs.*)
: Build a Linux filesystem. The mkfsfroundend utility deprecated in favor of the filesystem-specific mkfs.utilities (e.g.mkfs.ext4
,mkfs.xfs
, etc.)
fsck
: Checks and optionally repairs one or more Linux filesystems. A filesystem can be a device name, a mount point, an ext2 label, or a UUID specifier. Thefsck
command is a frontend for the various filesystem checkers (e.g.fsck.fstype
)
-t
Specify the type of filesystem to be checked
-A
Check filesystem in /etc/fstab
-C
Display progress bars for the check
-N
Perform a dry run
-a
Automatically repair a filesystem
-n
Print errors but do not repair
-r
Interactively repair filesystems
-y
Always attempt to repair a filesystem automatically
tune2fs
: Adjust tunable filesystem parameters on ext2/ext3/ext4 filesystems.
-l
List the contents of the filesystem superblock
-L
Set the volume lable for the system
-j
Add an ext3 journal to the filesystem
-J
Override the default ex3 journal parameters
-m
Set the percentage of the filesystem which may only be allocated by privileged processes.
-o
Set or clear the indicated default mount options ('^' is used to clear option)
-O
Set or clear the indicated filesystem features in the filesystem ('^' is used to clear features)
dumpe2fs
: Dump ext2/ext3/ext4 filesystem information. Prints the super block and blocks group information for the device specified. The-h
option is used to only display superblock information.
debugfs
: ext2/ext3/ext4 filesystem debugger. Used to interactively examine and change the state of the filesystem. The-w
option specifies that the filesystem should be opened in read-write mode.
XFS
XFS stands for the extents filesystem, which is a reference to the way blocks are allocated and managed. Extents are one or more contiguous blocks that vary in length. It also implements the concept of allocation groups (AG), which are equally-sized linear regions on the filesystem.
Although files and directories can span across multiple AGs, each AG is responsible for managing its own inodes and free space.
Allocates blocks using extents, Manages storage through allocation groups (AGs) and Implements journaling Supports large filesystems and individual files (16 exbibvtes and 8 exbibytes respectivelv)
xfs_info
: Display XFS filesystem geometry information.xfs_check
: Check the consistency of an XFS filesystem. This command is deprecated in favor ofxfs_repair -n
xfs_repair
: Repair a corrupt or damaged XFS filesystem. Using the-n
option will perform a dry run.xfsdump
: Backs up files and their attributes to a storage media, regular file, or standard output. The-f
option can be used to specify a device.xfsrestore
: Restore a filesystem from dumps produced by thexfsdump
utility. The-f
option is used to specify a source of the dump to be restored.
Btrfs and ZFS Filesystems
Btrfs Filesystem
The b-tree filesystem, or Btrfs, is a modern copy on write (CoW) filesystem. It introduces advanced features while focusing on fault tolerance, repair, and easy administration. Some of these features include:
Space-efficient packing of small files and indexed directories
Snapshots (Writable and read-only)
Support for software-based RAID
Subvolumes (seprate internal filesystem roots)
Self-healing
Large file size and directory
btrfs
: Thebtrfs
utility is a toobox for managing Btrfs filesystems.
check
Balance filesystem chunks across a single or several devices
device
Perform an off-line check on a filesystem
filesystem
Manae a Btrfs filesystem
replace
Replace Btrfs devices
rescue
Try to rescue a damaged filesystem
restore
Try to restore files from a damaged filesystem
subvolume
Create/Delete/List/Manage Btrfs subvolumes
btrfs-convert
: Perform an in-place conversion from ext2/3/4 filesystems to Btrfs.
ZFS Filesystem
The ZFS filesystem, which originally stood for the zettabyte filesystem, combines the features of a filesystem and a volume manager. Like Btrfs, ZFS is a copy on write (CoW) filesystem. Some features of ZFS include:
Pooled storage
Snapshots (may be mounted as read-only)
Data integrity verification
Self-healing
Support for RAID and RAID-Z
Large file size and directory support
203.3 Creating and configuring filesystem options (weight: 2)
Candidates should be able to configure automount filesystems using AutoFS. This objective includes configuring automount for network and device filesystems. Also included is creating filesystems for devices such as CD-ROMs and a basic feature knowledge of encrypted filesystems.
Key Knowledge Areas:
autofs configuration files
Understanding of automount units
UDF and ISO9660 tools and utilities
Awareness of other CD-ROM filesystems (HFS)
Awareness of CD-ROM filesystem extensions (Joliet, Rock Ridge, El Torito)
Basic feature knowledge of data encryption (dm-crypt / LUKS)
The following is a partial list of the used files, terms and utilities:
/etc/auto.master
/etc/auto.[dir]
mkisofs
cryptsetup
Using AutoFS to Automatically Mount Filesystems
Indirect mounts: The
auto.master
contains a directory that point to a map file that contians one or more subdirectories (or keys).Direct mounts: The directory in the
auto.master
is represented as "/-" and points to a map file that contains the individual directory to be mounted./etc/sysconfig/autofs
: Configuration file that sets global options forautofs
mount./etc/auto.master
: The main configuration file forautofs
./etc/auto.map_name
: Individual map files forautofs
.cat /etc/automaster
: (Indirect Mount Example)
cat /etc/auto.data
: (Indirect Mount Example)
cat /etc/master
: (Direct Mount Example)
cat /etc/auto.design
: (Direct Mount Example)
cat /etc/auto.network
: (Network Mounts Example)
CD-ROM Filesystems
ISO 9660: A filesystem for optical disk media that was published by the International Organization for Standardization. It is a read-only filesystem and has been the de facto standard for CD-ROM disks.
Universal Disk Format (UDF): A vendor neural filesystem that is used for a wide range of media. It was developed to overcome some of the shortcomings of ISO 9660 and is used often for DVDs and other rewritable media.
Hierarchial File System (HFS): A filesystem developed by Apple and the native filesystem used on Macintosh computers. It is also used on read-only media like CD-ROMs.
ISO 9660 Extensions:
Rock Ridge (Interchange Protocol) - Offers extensions for longer file names, POSIX permissions, groups, and user IDs, and support for device files and symbolic links.
Joliet - A Microsoft extension for the ISO 9660 file system format. It allows Unicode characters and supports long file names.
El Torito - Specifies a standard way to make bootable CD-ROMs and DVDs.
mkisofs
(genisoimage): Create ISO9660/Joliet/HFS filesystem with optional Rock Ridge attributes.
Data Encryption
Linux Unified Key Setup (LUKS): A disk encryption specification in Linux. It uses the device mapper crypt kernel module (
dm-crypt
) which provides transparent encryption for block devices.cryptsetup
: Used to setup cryptographic volumes fordm-crypt
(including LUKS extension).
create
Create a mapping
remove
Remove an existing mapping
status
Report the status for a mapping
resize
Resize an active mapping
luksFormat
Initilize a LUKS partition and set the initial key
luksOpen
Open the LUKS partition and set up a mapping
luksClose
Same as "remove"
smartd
: A daemon that monitors the Self-Monitoring, Analysis and Reporting Technology (SMART) system build into many ATA-3 and later ATA, IDE, and SCSI-3 hard drives./etc/smartmontools/smartd.conf
- Define devices and attributes to monitor and mail addresses to notify in case of a failure./etc/sysconfig/smartmontools
- Modify startup arguments forsmartd
smartctl
: Control and monitor utility for SMART Disks.
-i
Print information about the device
-a
Print SMART information about the device
-x
Print SMART and non-SMART information about the device
-s
Enable or Disable SMART on a device
-t
Execute a test of the device (delay with -C)
Sample Questions
1. What are the two different types of autofs mounts?
2. What command is used to convert an ext filesystem to Btrfs?
3. What is the main configuration file for autofs?
4. What configuration file contains startup arguments for smartd to be modified?
5. What are the commands used for enabling or disabling swap space? (Choose two.)
6. What special type of RAID level was introduced by the ZFS filesystem?
7. What command is used to set up cryptographic volumes for dm-crypt?
8. What option is used to create a journal using tune2fs?
9. What version of the ext filesystem introduced journaling?
10. What commands can list the contents of the filesystem super block? (Choose two.)
11. What is the mount command option to supply specific mount options?
12. Which of the following is a command used to set up a Linux swap area?
13. Which of the following are copy-on-write filesystems? (Choose two.)
14. What command writes cached data to persistent storage?
15. What file is read to automatically create Systemd mount units?
16. Which ISO 9660 extension is used to make bootable CD-ROMs and DVDs?
17. What command is used to display filesystem geometry information for XFS?
18. What file traditionally maintained a list of currently mounted filesystems?
19. What is the purpose of a system mount unit?
Last updated
Was this helpful?