Candidates should be able to configure and implement software RAID. This objective includes using and configuring RAID 0, 1 and 5.
Key Knowledge Areas:
Software RAID configuration files and utilities
The following is a partial list of the used files, terms and utilities:
mdadm.conf
mdadm
/proc/mdstat
partition type 0xFD
Undrestanding RAID and RAID Levels
RAID stands for Redundant Array of Independent Disks and is a storage solution that is used to organize or combine a group of disks into one or more logical units.
Mirroring
Striping
Parity
RAID 0: Striping
RAID 1: Mirroring
RAID 5: Block-Level Stripping with Distributed Parity
Files and Utilities for Interacting with RAID
mdadm.conf: Main configuration file for the management of software raid with the mdadm utility
/proc/mdstat: Display a snapshot of the kernel's RAID/md stat.
0xFD partition type: Type ID number that signifies a RAID partition.
mdadm: A utility for creating, managing, and monitoring RAID devices using the md driver in Linux.
Candidates should be able to configure kernel options to support various drives. This objective includes software tools to view & modify hard disk settings including iSCSI devices.
Key Knowledge Areas:
Tools and utilities to configure DMA for IDE devices including ATAPI and SATA
Tools and utilities to configure Solid State Drives including AHCI and NVMe
Tools and utilities to manipulate or analyse system resources (e.g. interrupts)
Awareness of sdparm command and its uses
Tools and utilities for iSCSI
Awareness of SAN, including relevant protocols (AoE, FCoE)
The following is a partial list of the used files, terms and utilities:
hdparm, sdparm
nvme
tune2fs
fstrim
sysctl
/dev/hd*, /dev/sd*, /dev/nvme*
iscsiadm, scsi_id, iscsid and iscsid.conf
WWID, WWN, LUN numbers
Direct Memory Access (DMA) and Interrupts Handling
Direct Memory Access allows hardware devices (e.g. disk drivers, network cards, sound cards, etc.) to effectively bypass the CPU and send or recive data directly from the main system memory rather than taking up large quantities of proccessing time. This process is managed by a DMA controller (DMAC).
A hardware interrupt or interrupt request (IRQ) is a signal that informs the processor that a hardware device (e.g. mouse, keyboard, etc.) needs attention. The interrupt suspends the current activity of the processor in order to handle the external event.
iSCSI (Internet Small Computer System Interface): A protocol that allows SCSI commands to be sent over a TCP/IP network. Communication takes place between an initiator (the cliant) and a target (a server).
ATA over Ethernet (AoE): Allows the Advanced Technology Attachment (ATA) protocol over an ethernet network
Fiber Channel over Ethernet (FCoE): Allows the Fiber Channel (FC) protocol over an ethernet network
targetcli: A shell for viewing, editing and saving the configuration of the kernel's target subsystem.
Creating an iSCSI Target:
Create a backstore using nvme1n1.
Create a target with a unique iSCSI Qualified Name (IQN).
Create an ACL, LUN, and portal within the target portal group (TPG)
ACLs: Access control lists
LUN: Logical unit number
Portal: The IP and TCP port pair for an iSCSI target
[root@linuxmaster ~]# targetcli ls
...
Files and Utilities for the iSCSI Initiator
iscsid.conf: The default configuration file for iSCSI. It contains settings used by iscsid and iscsiadm.
initaltorname.iscsi: Contains the iSCSI initiator name. This should mirror the name from the ACL of the iSCSI target.
iscsid: A system daemon that manages iSCSI connections.
scsi_id: A utility used to retrieve and generate a unique SCSI identifier. This is primarity used by other utilities such as udev.
iscsiadm: The open-iscsi administration utility.
iscsiadm -m <mode> [options]
Option
Description
-m
Specify the mode
-t
Specify the discovery type
-T
Specify the target name
-l
Login to a specified record
-p
Use target portal with IP address and port
-P
Print in tree format
[root@linuxmaster ~]# cat /etc/iscsi/initiatorname.iscsi
<<Add custom initiator name
[root@linuxmaster ~]# iscsiadm -m discovery -t st -p ip_address
<<Discover the iSCSI target
[root@linuxmaster ~]# iscsiadm -m node -T iqn.2022-09.com.name.host:t1 -l
<<Login to the target with the discovered IQN
[root@linuxmaster ~]# grep "Attached SCSI" /var/log/messages
<<View the iSCSI disk name
[root@linuxmaster ~]# iscsiadm -m node -T iqn.2022-09.com.name.host:t1 -u
<<Log off the iSCSI target204.3 Logical Volume Manager (weight: 3)
Candidates should be able to create and remove logical volumes, volume groups, and physical volumes. This objective includes snapshots and resizing logical volumes.
Key Knowledge Areas:
Tools in the LVM suite
Resizing, renaming, creating, and removing logical volumes, volume groups, and physical volumes
Creating and maintaining snapshots
Activating volume groups
The following is a partial list of the used files, terms and utilities:
/sbin/pv*
/sbin/lv*
/sbin/vg*
mount
/dev/mapper/
lvm.conf
LVM Architecture
Working with Physical Volumes
Command
Purpose
pvcreate
Create (initialize) a physical volume from a block device
pvs
Display info about physical volumes
pvdisplay
Display verbose info about physical volumes
pvscan
Scan all supported LVM block devices
pvresize
Update the size of a physical volume
pvremove
Remove a physical volume
[root@linuxmaster ~]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 19.1G 0 disk
└─sda1 8:1 0 19.1G 0 part /
sdb 8:16 0 10G 0 disk
├─sdb1 8:17 0 1G 0 part
└─sdb2 8:18 0 1G 0 part
sdc 8:32 0 10G 0 disk
├─sdc1 8:33 0 1G 0 part
└─sdc2 8:34 0 1G 0 part
sr0 11:0 1 1024M 0 rom
[root@linuxmaster ~]# pvcreate /dev/sdb{1,2} /dev/sdc{1,2}
Physical volume "/dev/sdb1" successfully created.
Physical volume "/dev/sdb2" successfully created.
Physical volume "/dev/sdc1" successfully created.
Physical volume "/dev/sdc2" successfully created.
[root@linuxmaster ~]# pvs
PV VG Fmt Attr PSize PFree
/dev/sdb1 lvm2 --- 1.00g 1.00g
/dev/sdb2 lvm2 --- 1.00g 1.00g
/dev/sdc1 lvm2 --- 1.00g 1.00g
/dev/sdc2 lvm2 --- 1.00g 1.00g
[root@linuxmaster ~]# pvscan
PV /dev/sdc1 lvm2 [1.00 GiB]
PV /dev/sdb2 lvm2 [1.00 GiB]
PV /dev/sdc2 lvm2 [1.00 GiB]
PV /dev/sdb1 lvm2 [1.00 GiB]
Total: 4 [4.00 GiB] / in use: 0 [0 ] / in no VG: 4 [4.00 GiB]
[root@linuxmaster ~]# pvdisplay
"/dev/sdc1" is a new physical volume of "1.00 GiB"
--- NEW Physical volume ---
PV Name /dev/sdc1
VG Name
PV Size 1.00 GiB
Allocatable NO
PE Size 0
Total PE 0
Free PE 0
Allocated PE 0
PV UUID yayebB-OerJ-U7IE-Ww8h-M1N6-l0dl-ezcXrS
"/dev/sdb2" is a new physical volume of "1.00 GiB"
--- NEW Physical volume ---
PV Name /dev/sdb2
VG Name
PV Size 1.00 GiB
Allocatable NO
PE Size 0
Total PE 0
Free PE 0
Allocated PE 0
PV UUID O5PA7y-HqOx-q69t-Vret-V9UZ-RqH8-NJuHqB
"/dev/sdc2" is a new physical volume of "1.00 GiB"
--- NEW Physical volume ---
PV Name /dev/sdc2
VG Name
PV Size 1.00 GiB
Allocatable NO
PE Size 0
Total PE 0
Free PE 0
Allocated PE 0
PV UUID bOKd2X-yHB3-w0xS-t8JU-uq95-VksQ-KZ0LM6
"/dev/sdb1" is a new physical volume of "1.00 GiB"
--- NEW Physical volume ---
PV Name /dev/sdb1
VG Name
PV Size 1.00 GiB
Allocatable NO
PE Size 0
Total PE 0
Free PE 0
Allocated PE 0
PV UUID hzCENy-Pic3-8Z9D-Legi-JacD-G6oj-ucfuTM
Working with Volume Group
Command
Purpose
vgcreate
Create a volume group from physical volumes
vgextend
Add a physical volume to a volume group
vgreduce
Remove a physical volume from a volume group
vgs
Display information about volume groups
vgdisplay
Display verbose information about volume groups
vgscan
Display information about volume groups and rebuild the LVM cache
vgchange
Modify attributes of a volume group
vgrename
Change the name of a volume group
vgremove
Remove a volume group
[root@linuxmaster ~]# vgcreate data_vg /dev/sdb{1,2}
Volume group "data_vg" successfully created
root@linuxmaster ~]# vgs
VG #PV #LV #SN Attr VSize VFree
data_vg 2 0 0 wz--n- 1.99g 1.99g
[root@linuxmaster ~]# vgscan
Reading volume groups from cache.
Found volume group "data_vg" using metadata type lvm2
[root@linuxmaster ~]# vgdisplay
--- Volume group ---
VG Name data_vg
System ID
Format lvm2
Metadata Areas 2
Metadata Sequence No 1
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 0
Open LV 0
Max PV 0
Cur PV 2
Act PV 2
VG Size 1.99 GiB
PE Size 4.00 MiB
Total PE 510
Alloc PE / Size 0 / 0
Free PE / Size 510 / 1.99 GiB
VG UUID z5kweM-C1aR-egdJ-IefJ-f1Bz-VGDC-EXcQzx
[root@linuxmaster ~]# vgextend data_vg /dev/sdc{1,2}
Volume group "data_vg" successfully extended
[root@linuxmaster ~]# vgs
VG #PV #LV #SN Attr VSize VFree
data_vg 4 0 0 wz--n- 3.98g 3.98g
Working with Logical Volumes
Command
Purpose
lvcreate
Create a logical volume from a volume group
-L - Specify the size
-l - Specify the number of extends or extent percentage
lvs
Display info about logical volumes
lvdisplay
Display verbose info about logical volumes
lvscan
List all logical volumes in all volume groups
lvrename
Change the name of a logical volume
lvchange
Adjust the parameters of a logical volume
lvremove
Remove a logical volume from a volume group
[root@linuxmaster ~]# lvcreate -L 1G -n backup data_vg
Logical volume "backup" created.
[root@linuxmaster ~]# lvcreate -l 500 -n temp data_vg
Logical volume "temp" created.
[root@linuxmaster ~]# lvcreate -l 50%FREE -n current data_vg
Logical volume "current" created.
[root@linuxmaster ~]# lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
backup data_vg -wi-a----- 1.00g
current data_vg -wi-a----- 528.00m
temp data_vg -wi-a----- 1.95g
[root@linuxmaster ~]# lvdisplay
--- Logical volume ---
LV Path /dev/data_vg/backup
LV Name backup
VG Name data_vg
LV UUID a2GDAc-WoFl-QVQ5-E4YD-ylhX-7RPT-w7B462
LV Write Access read/write
LV Creation host, time linuxmaster, 2022-09-13 14:26:00 +0000
LV Status available
# open 0
LV Size 1.00 GiB
Current LE 256
Segments 2
Allocation inherit
Read ahead sectors auto
- currently set to 8192
Block device 253:0
--- Logical volume ---
LV Path /dev/data_vg/temp
LV Name temp
VG Name data_vg
LV UUID AAtwqm-CtbZ-9AdO-SLDJ-F61m-gIXc-rxK22j
LV Write Access read/write
LV Creation host, time linuxmaster, 2022-09-13 14:26:53 +0000
LV Status available
# open 0
LV Size 1.95 GiB
Current LE 500
Segments 2
Allocation inherit
Read ahead sectors auto
- currently set to 8192
Block device 253:1
--- Logical volume ---
LV Path /dev/data_vg/current
LV Name current
VG Name data_vg
LV UUID yRgoQq-u5d2-FiqW-ijZ5-538q-aH1I-UVWOQ0
LV Write Access read/write
LV Creation host, time linuxmaster, 2022-09-13 14:28:10 +0000
LV Status available
# open 0
LV Size 528.00 MiB
Current LE 132
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 8192
Block device 253:2
[root@linuxmaster ~]# lvremove /dev/data_vg/temp
Do you really want to remove active logical volume data_vg/temp? [y/n]: y
Logical volume "temp" successfully removed
[root@linuxmaster ~]# lvscan
ACTIVE '/dev/data_vg/backup' [1.00 GiB] inherit
ACTIVE '/dev/data_vg/current' [528.00 MiB] inherit
[root@linuxmaster ~]# mkfs.ext4 /dev/data_vg/backup
mke2fs 1.42.9 (28-Dec-2013)
Discarding device blocks: done
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
65536 inodes, 262144 blocks
13107 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=268435456
8 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376
Allocating group tables: done
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
[root@linuxmaster ~]# mkfs.ext4 /dev/data_vg/current
mke2fs 1.42.9 (28-Dec-2013)
Discarding device blocks: done
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
33840 inodes, 135168 blocks
6758 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=138412032
5 block groups
32768 blocks per group, 32768 fragments per group
6768 inodes per group
Superblock backups stored on blocks:
32768, 98304
Allocating group tables: done
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done
[root@linuxmaster ~]# mkdir /mnt/backup
[root@linuxmaster ~]# mkdir /mnt/current
[root@linuxmaster ~]# mount -t ext4 /dev/data_vg/backup /mnt/backup/
[root@linuxmaster ~]# mount -t ext4 /dev/data_vg/current /mnt/current/
[root@linuxmaster ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 871M 0 871M 0% /dev
tmpfs 895M 0 895M 0% /dev/shm
tmpfs 895M 8.6M 887M 1% /run
tmpfs 895M 0 895M 0% /sys/fs/cgroup
/dev/sda1 19G 1.1G 17G 6% /
tmpfs 179M 0 179M 0% /run/user/0
/dev/mapper/data_vg-backup 976M 2.6M 907M 1% /mnt/backup
/dev/mapper/data_vg-current 504M 804K 466M 1% /mnt/current
Resizing Logical Volumes
Command
Purpose
lvextend
Grow the size of a logical volume
-L - Specify the size
-l - Specify the number of extens or extent percentage
-r - Resize the underlying file system
lvs
Display info about logical volumes
resize2fs
Resize an ext2/ext3/ext4 filesystem
xfs_growfs
Expand an XFS filesystem
lvreduce
Reduce the size of a logical volume
[root@linuxmaster ~]# vgs
VG #PV #LV #SN Attr VSize VFree
data_vg 4 2 0 wz--n- 3.98g <2.47g
[root@linuxmaster ~]# lvextend -L +500M /dev/data_vg/backup
Size of logical volume data_vg/backup changed from 1.00 GiB (256 extents) to <1.49 GiB (381 extents).
Logical volume data_vg/backup successfully resized.
[root@linuxmaster ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 871M 0 871M 0% /dev
tmpfs 895M 0 895M 0% /dev/shm
tmpfs 895M 8.6M 887M 1% /run
tmpfs 895M 0 895M 0% /sys/fs/cgroup
/dev/sda1 19G 1.1G 17G 6% /
tmpfs 179M 0 179M 0% /run/user/0
/dev/mapper/data_vg-backup 976M 2.6M 907M 1% /mnt/backup
/dev/mapper/data_vg-current 504M 804K 466M 1% /mnt/current
[root@linuxmaster ~]# resize2fs /dev/data_vg/backup
resize2fs 1.42.9 (28-Dec-2013)
Filesystem at /dev/data_vg/backup is mounted on /mnt/backup; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 1
The filesystem on /dev/data_vg/backup is now 390144 blocks long.
[root@linuxmaster ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 871M 0 871M 0% /dev
tmpfs 895M 0 895M 0% /dev/shm
tmpfs 895M 8.6M 887M 1% /run
tmpfs 895M 0 895M 0% /sys/fs/cgroup
/dev/sda1 19G 1.1G 17G 6% /
tmpfs 179M 0 179M 0% /run/user/0
/dev/mapper/data_vg-backup 1.5G 3.0M 1.4G 1% /mnt/backup
/dev/mapper/data_vg-current 504M 804K 466M 1% /mnt/current
[root@linuxmaster ~]# lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
backup data_vg -wi-ao---- <1.49g
current data_vg -wi-ao---- 528.00m
[root@linuxmaster ~]# lvreduce -l 100 -r data_vg/current
Do you want to unmount "/mnt/current" ? [Y|n] y
fsck from util-linux 2.23.2
/dev/mapper/data_vg-current: 11/33840 files (0.0% non-contiguous), 6428/135168 blocks
resize2fs 1.42.9 (28-Dec-2013)
Resizing the filesystem on /dev/mapper/data_vg-current to 102400 (4k) blocks.
The filesystem on /dev/mapper/data_vg-current is now 102400 blocks long.
Size of logical volume data_vg/current changed from 528.00 MiB (132 extents) to 400.00 MiB (100 extents).
Logical volume data_vg/current successfully resized.
[root@linuxmaster ~]# lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
backup data_vg -wi-ao---- <1.49g
current data_vg -wi-ao---- 400.00m
Creating and Managing Snapshots
Command
Purpose
lvcreate
Create a logical volume
-L - Specify the size
-l - Specify the number of extents or extent percentage
-s - Create a snapshot
lvs
Display info about logical volumes
lvextend
Increate the size of a logical volume or snapshot (COW table)
lvreduce
Reduce the size of a logical volume or snapshot (COW table)
lvremove
Remove a logical volume or a snapshot
lvchange
Adjust the parameters of a logical volume
lvconvert
Change logical volume layout
--merge - Merge a snapshot logical volume into its origin