Wednesday 4 January 2012

AIX - LVM - Remove File System

Remove FS
Using rmfs command we can remove the file systems
#lsfs –a
/testfs


Before removing the /testfs. That file system should be unmounted.
#umount /testfs
#rmfs /testfs (Deletes FS /newfs and associated LV)


After executing the above command /testfs is removed.
#rmfs –r /testfs (Deletes FS /newfs its mount point and associated LV)

No comments:

Post a Comment