Skip to content

Storage

Compressed files

Voici le détail des options :

  • c : crée un archive.
  • z : compresse l’archive avec gzip.
  • v : mode verbeux, affiche la progression.
  • f : permet de spécifier le nom du fichier d’archive.

Compresser

Compresser des fichiers :

tar -czvf nom-de-l-archive.tar.gz /chemin/vers/répertoire-ou-fichier

Décompresser

Pour décompresser le rar avec son passwd :

rar x -hP{MOT DE PASSE} {FICHIER.RAR}
rar x -hPTEST test2.rar

DD

dd nécessite de droits super utilisateur :

sudo dd bs=4M if=$chemin/fichier.iso of=/dev/$disk && sync

Create 1 file heavy as 1G

dd if=/dev/urandom of=tempfile bs=1M count=1024

LVM - Logical Volume Manager

Extend partition

fdisk dev/sdX
echo 1 > /sys/block/sdX/device/rescan
pvresize /dev/sdX2

Make FS

XFS

mkfs.xfs -d su=64k,sw=4 /dev/mapper/

EXT4

mkfs.ext4 -L Label /dev/block_device

Scan Disk

Rescan disk

echo 1 > /sys/class/scsi_disk/1\[:TAB:]/device/rescan

Extend volumes

lvextend -L+<<>>G /dev/mapper/VOLUME

Apply modifications

resize2fs /dev/mapper/VOLUME

Reducing an LVM2 Swap Logical Volume

Disable swapping for the associated logical volume:

swapoff -v /dev/VolGroup00/LogVol01

Reduce the LVM2 logical volume by 512 MB:

lvreduce /dev/VolGroup00/LogVol01 -L -512M

Format the new swap space:

mkswap /dev/VolGroup00/LogVol01

Activate swap on the logical volume:

swapon -v /dev/VolGroup00/LogVol01

To test if the swap logical volume was successfully reduced, inspect active swap space:

cat /proc/swaps

Label Block Device

e4label <block_device> new-label