LVM Resize a Filesystem: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
Line 16: Line 16:
#:<tt>'''# lvextend -L +<size>[M | G] /dev/<volume_group>/<logical_volume>'''</tt>
#:<tt>'''# lvextend -L +<size>[M | G] /dev/<volume_group>/<logical_volume>'''</tt>
# Resize the underlying filesystem
# Resize the underlying filesystem
#: <tt>'''# xfs_growfs -d </path/to/filesystem>'''</tt>
#: <tt>'''# xfs_growfs </path/to/filesystem>'''</tt>
 
==== Reduce an ext4 Filesystem ====
==== Reduce an ext4 Filesystem ====
# Note: You may have to change to runlevel 1 in order to unmount
# Note: You may have to change to runlevel 1 in order to unmount

Revision as of 09:30, 30 October 2021

AIX

Extend a Filesystem

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

Reduce a Filesystem

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

Linux

Extend an ext4 Filesystem

  1. Increase the size of the logical volume
    # lvextend -L +<size>[M | G] /dev/<volume_group>/<logical_volume>
  2. Resize the underlying filesystem
    # resize2fs /dev/<volume_group>/<logical_volume>

Extend an xfs Filesystem

  1. Increase the size of the logical volume
    # lvextend -L +<size>[M | G] /dev/<volume_group>/<logical_volume>
  2. Resize the underlying filesystem
    # xfs_growfs </path/to/filesystem>

Reduce an ext4 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
    # 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
    # e2fsck –f /dev/<volume_group>/<logical_volume>
  5. Reduce the filesystem
    # resize2fs /dev/<volume_group>/<logical_volume> -<size>[M | G]
  6. Reduce the logical volume
    # lvreduce –L -<size>[M | G] /dev/<volume_group>/<logical_volume>
  7. Re-check the filesystem to ensure it is clean
    # e2fsck –f /dev/<volume_group>/<logical_volume>
  8. Mount the filesystem
    # mount /dev/<volume_group>/<logical_volume>

Further Reading

  1. IBM pSeries and AIX Information Center