【Solaris】Solaris檔案系統管理4 ZFS檔案系統備份、刪除與恢復

海星星hktk發表於2016-01-08
Solaris檔案系統管理4 
ZFS檔案系統備份、刪除與恢復



1 建立快照

為testpool/home/dana檔案系統建立一個快照  2015dana
[root@solaris188:/]#zfs snapshot testpool/home/dana@2015dana
[root@solaris188:/]#zfs list


2 檢視快照列表

[root@solaris188:/]#zfs list -t snapshot


3 根據快照建立檔案系統副本
根據剛才生成的快照,為testpool/home/dana檔案系統建立副本,可以用來恢復檔案系統
[root@solaris188:/]#zfs send -R testpool/home/dana@2015dana > /tmp/dana.send
[root@solaris188:/]#zfs send -R testpool/home/dana@2015dana > /practice/dana.send
[root@solaris188:/]#ls /tmp
[root@solaris188:/]#ls /practice



4 刪除檔案系統

[root@solaris188:/]#zfs destroy -r testpool/home/dana
[root@solaris188:/]#zfs list


5 恢復檔案系統
使用備份/tmp/dana.send 恢復檔案系統
[root@solaris188:/]#zfs receive testpool/home/dana < /tmp/dana.send
[root@solaris188:/]#zfs list







呂星昊
lvxinghao@163.com
2016.1.8

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29475508/viewspace-1973823/,如需轉載,請註明出處,否則將追究法律責任。

相關文章