假設一開始的備份來源是 /var/www/html
底下可能有好多個檔案或目錄
我想還原其中一部份的資料
restic --repo /backup/xxx --password-file=/etc/restic/.password restore latest --target /path/cross --include crossdata/wow
就可以將 /backup/xxx 裡的備份,還原到 /path/cross 底下,那我還原出來的資料就只有 /var/www/html/crossdata/wow 這路徑或目錄的而己
與先前提到的 –path 不同是 –path 是要絕對路徑,而 –include 只要下關鍵字即可,就方便許多,不需要整批還原才拿得到資料了。
留言