So during installation, I decided to try out ZFS. Initially it looked good, but it is taking up way too much space on my 60 GB SSD. How do I stop snapshots and delete existing ones? I am using ubuntu 20.04 and I am new to the linux world (migrating from windows)
Asked
Active
Viewed 1,450 times
2 Answers
0
To list snapshots:
zfs list -t snapshot
To delete snapshots:
zfs destroy pool/fs@snapshot
which you got from the first command.

Gordan Bobić
- 379
-
Thanks! It worked! – Zahiruzzaman Chowdhury May 12 '20 at 07:39