13.13. ZFS Snapshots and Clones

13.13.1. ZFS Snapshots

filesystem@snapname, volume@snapname

13.13.1.1. Creating ZFS Snapshots

The following example creates a snapshot of tank/neo that is named friday.

freebsd# zfs snapshot tank/neo@friday
				

13.13.1.2. Destroying ZFS Snapshots

Snapshots are destroyed by using the zfs destroy command.

# zfs destroy tank/home/ahrens@friday
				

13.13.1.3. Renaming ZFS Snapshots

# zfs rename tank/home/cindys@111205 pool/home/cindys@today
				

13.13.1.4. Displaying and Accessing ZFS Snapshots

freebsd# zfs list -t snapshot
NAME              USED  AVAIL  REFER  MOUNTPOINT
tank/neo@friday      0      -    18K  -
				

13.13.1.5. Rolling Back to a Snapshot

# zfs rollback pool/home/ahrens@tuesday
cannot rollback to 'pool/home/ahrens@tuesday': more recent snapshots exist
use '-r' to force deletion of the following snapshots:
pool/home/ahrens@wednesday
pool/home/ahrens@thursday
# zfs rollback -r pool/home/ahrens@tuesday
				

13.13.2. ZFS Clones

13.13.2.1. Creating a Clone

# zfs clone pool/ws/gate@yesterday pool/home/ahrens/bug123

# zfs snapshot projects/newproject@today
# zfs clone projects/newproject@today projects/teamA/tempuser
# zfs set sharenfs=on projects/teamA/tempuser
# zfs set quota=5G projects/teamA/tempuser
				

13.13.2.2. Destroying a Clone

ZFS clones are destroyed with the zfs destroy command.

# zfs destroy pool/home/ahrens/bug123
				

Clones must be destroyed before the parent snapshot can be destroyed.

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

时间: 2024-10-01 18:12:46

13.13. ZFS Snapshots and Clones的相关文章

快讯:7天酒店周一开盘价13.13美元涨幅5.04%

点击查看最新行情 上周五,7天连锁酒店集团公司赴美纽交所上市,股票代码为"SVN",IPO招股价为11美元,此次IPO共发行1,010万份ADS,占公司总股本的20.6%,融资金额达1.111亿美元. 11月23日晚间,7天酒店开盘价13.13美元,涨0.63美元,涨幅为5.04%. 转发此文至微博

第 13 章 ZFS

13.1. 初始化 echo "zfs_enable=YES" >> /etc/rc.conf echo 'daily_status_zfs_enable="YES"' >> /etc/periodic.conf freebsd# vi /etc/rc.conf zfs_enable="YES" freebsd# /etc/rc.d/zfs faststart 另一种临时启动方法 # /etc/rc.d/zfs onest

13.5. zfs mount/umount

Legacy mount points must be managed through legacy tools. An attempt to use ZFS tools result in an error. # zfs mount pool/home/billm cannot mount 'pool/home/billm': legacy mountpoint use mount(1M) to mount this filesystem # mount -F zfs tank/home/bi

13.9. zfs

# yum info zfs-fuse Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: mirrors.163.com * base: mirrors.163.com * epel: mirror01.idc.hinet.net * extras: mirrors.163.com * updates: mirrors.163.com Available Packages Name

《响应式Web图形设计》一13.3 自适应图像解决方案

13.3 自适应图像解决方案 响应式Web图形设计 为了处理自适应图像的大小问题,下面给出一些可以采用的方法. 13.3.1 另寻他法 一个看起来不太像解决方法的方法是:永远不要使用光栅图像,而要依赖其他格式的图像. 既然问题的核心是光栅图像的文件大小,那么如果我们可以使用其他文件格式或者技术来进行视觉呈现,自然也就可以减轻甚至消除自适应图像的麻烦了. 可以使用的技术有以下两种. SVG--矢量图像就是为了缩放图像而存在的(见图13.8).凭借前所未有的强大的浏览器的支持,如果你想要一张色彩简单

javascript根据时间生成m位随机数最大13位_javascript技巧

根据时间生成m位随机数,最大13位随机数,并且不能保证首位不为0 function ran(m) { m = m > 13 ? 13 : m; var num = new Date().getTime(); return num.toString().substring(13 - m); } console.log(ran(5)); 根据Math的random函数生成的随机数截取m位,生成的随机数最大不超过16位,能保证首位不为0 function rand(m) { m = m > 16 ?

神秘私企意欲13亿接手新江湾城五成股权

挂牌近1个月后,城投控股(600649.SH)拟转让新江湾城投资发展有限公司50%股权(下称"新江湾城")的公告宣告期满.这笔挂牌价格高达13.13亿元的股权交易,引来多家资本大鳄竞逐.其中即包括了光大系的金融机构.美国上市企业等各方"大腕".而在众多拥有响亮名头的意向买家行列之中,一家名不见经传的神秘企业开始浮出水面.根据<第一财经日报>多方调查,该企业名为"上海鼎汇通股权投资管理有限公司"(下称"鼎汇通"),此

GlusterFS on ZFS on CentOS 6.x x64

原文如下, 但是这里有几点不推荐按照原文来做. 1. zfs set sync=disabled sp1  (不推荐) 如果没有UPS的话, 不推荐关闭sync, 因为任何异常都可能会导致数据丢失.              sync=standard | always | disabled            Controls  the  behavior  of  synchronous  requests  (e.g. fsync, O_DSYNC).              1. s

PostgreSQL 增量备份集的有效恢复位点

标签 PostgreSQL , 物理备份 , 时间点恢复 , PITR , 增量备份 , 归档 , 一致性 , 逻辑检查点 , 时间线 背景 PostgreSQL支持PITR即时间点恢复,为了支持时间点恢复,至少需要一次全量备份,然后需要归档日志. 这句话描述可能不够清晰,至少需要哪些归档日志,全量备份的时间点有没有要求呢? 本文要解答这个问题. 什么是全量备份 全量备份指的是对数据库的$PGDATA以及所有表空间文件(包括全局数据文件.事务日志文件.配置文件.控制文件.表空间数据文件等)进行一