DeveloperBreeze

Linux System Administration Development Tutorials, Guides & Insights

Unlock 2+ expert-curated linux system administration tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your linux system administration skills on DeveloperBreeze.

Managing Disk Space: Understanding and Using LVM on Linux

Tutorial August 19, 2024
bash

  • Check and Resize the File System:
  • For ext4 file systems:
     sudo e2fsck -f /dev/my_volume_group/my_logical_volume
     sudo resize2fs /dev/my_volume_group/my_logical_volume 15G

Using `rsync` for Efficient Backups and File Synchronization

Tutorial August 19, 2024
bash

rsync -av --dry-run /source/directory/ /destination/directory/

This is particularly useful when testing complex rsync commands.