meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:fs:zfs:auto_snapshots [2021/03/05 08:44] niziaklinux:fs:zfs:auto_snapshots [2023/12/05 16:03] (current) niziak
Line 12: Line 12:
  
  
-====== ZFS auto snapshots ======+===== destroy snapshots ===== 
 + 
 +Destroy all snapshots contains ''2022'': 
 +<code bash> 
 +zfs list -H -t snapshot -o name | grep 2022 | xargs -n1 zfs destroy 
 +</code> 
 + 
 +===== Tools ===== 
 + 
 +==== zfs-auto-snapshot ==== 
 + 
 +Automatically create, rotate, and destroy periodic ZFS snapshots.
  
 Exclude from snapshot: Exclude from snapshot:
Line 24: Line 35:
 sudo apt-get install zfs-auto-snapshot sudo apt-get install zfs-auto-snapshot
 </code> </code>
 +
 +==== pyznap ====
 +
 +[[https://github.com/yboetz/pyznap|pyznap]]
 +
 +==== zsnapd ====
 +[[https://github.com/grantma/zsnapd|ZFS Snapshot Daemon]]
 +
 +Advanced. Can send snapshot to another machine.
 +
 +==== zfsnap ====
 +[[https://github.com/zfsnap/zfsnap|zfsnap]]
  
 ====== GUIs ====== ====== GUIs ======
 +
 +===== snapshot-explorer =====
 +
 +<code>https://github.com/niziak/snapshot-explorer</code>
 +
 +===== snapper =====
 +
 +It is snapshot GUI for BTRFS. But there is a experimental [[https://github.com/johanfleury/snapper/tree/feature/zfs|zfs]] branch to support zfs.
 +
 +[[https://github.com/openSUSE/snapper]]
  
 ===== zgui ===== ===== zgui =====