LVM Resize a Filesystem

From UNIX Systems Administration
Jump to navigation Jump to search

AIX

Extend a Filesystem

  1. # chfs -a size=+<additional size>M <absolute path to filesystem>

Reduce a Filesystem

  1. # chfs -a size=-<reduced size>M <absolute path to filesystem>

Linux

Extend a Filesystem

  1. # lvextend -L +<size in MB>M /dev/rootvg/<logical volume>
  2. # resize2fs /dev/<volume group>/<logical volume>

Reduce a Filesystem

  1. Note: You may have to change to runlevel 1 in order to unmount.
  2. Backup your data!
  3. Dismount the filesystem before reducing the size.
    1. # umount /dev/<volume group>/<logical volume>
  4. Force check the filesystem to ensure it is clean. DO NOT RUN e2fsck IF THE FILESYSTEM IS MOUNTED.
    1. # e2fsck –f /dev/<volume group>/<logical volume>
  5. Reduce the filesystem.
    1. # resize2fs /dev/<volume group>/<logical volume> [+ | -]<size in MB>M
  6. Reduce the logical volume.
    1. # lvreduce –L -<size in MB>M /dev/<volume group>/<logical volume>
  7. Re-check the filesystem to ensure it is clean.
    1. # e2fsck –f /dev/<volume group>/<logical volume>
  8. Mount the filesystem.
    1. # mount /dev/<volume group>/<logical volume>

Further Reading

  1. IBM pSeries and AIX Information Center