ZFS: Remove an existing zfs filesystem

ZFS: Remove an existing zfs filesystem

# Tested on RHEL 6 & 7

# Choose the F.S. to remove

zfs list
   NAME           USED  AVAIL  REFER  MOUNTPOINT
   c_pool         349M  19.2G    30K  /c_pool
   c_pool/zfs01   349M   675M   349M  /zfs01
   c_pool/zfs02    30K  19.2G    30K  /filesystem02    <----
   m_pool         100K  9.78G    30K  /m_pool


ZPOOL=c_pool
ZFSFS=zfs02
MNTPT=`zfs list | grep $ZPOOL/$ZFSFS | awk '{print$NF}'`; echo $MNTPT
   /filesystem02


# Remove F.S.

zfs destroy $ZPOOL/$ZFSFS

rmdir $MNTPT


# Check

zfs list
   NAME           USED  AVAIL  REFER  MOUNTPOINT
   c_pool         349M  19.2G    30K  /c_pool
   c_pool/zfs01   349M   675M   349M  /zfs01
   m_pool         100K  9.78G    30K  /m_pool
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
BIND for the Small LAN
Viewed 3613 times since Sun, May 20, 2018
LVM: Create a new Logical Volume / Filesystem
Viewed 2270 times since Sat, Jun 2, 2018
Linux - How to shutdown or reboot
Viewed 2339 times since Fri, Jun 8, 2018
Linux Audit The Linux security blog about Auditing, Hardening, and Compliance lynis
Viewed 2316 times since Thu, Jan 16, 2020
systemd Auto-restart a crashed service in systemd
Viewed 3522 times since Fri, Jan 17, 2020
How to enable Proxy Settings for Yum Command on RHEL / CentOS Servers
Viewed 12911 times since Thu, Jul 19, 2018
RHCS6: Reduce a Global Filesystem 2 (GFS2)
Viewed 3612 times since Sun, Jun 3, 2018
How to use yum-cron to automatically update RHEL/CentOS Linux
Viewed 2884 times since Wed, Oct 17, 2018
Linux - How to perform I/O performance test with dd command
Viewed 6293 times since Fri, Jun 8, 2018
RHEL: Reinstalling Boot Loader on the Master Boot Record (MBR)
Viewed 3650 times since Sun, May 27, 2018