dcfldd
假設使用以下命令產生圖像:
dcfldd if=/dev/sourcedrive hash=md5,sha256 hashwindow=10G md5log=md5.txt \
sha256log=sha256.txthashconv=after bs=512 conv=noerror,sync split=10G \
splitformat=aa of=driveimage.dd
這將創建一系列名為 、 等的driveimage.dd.aa
10GB映像driveimage.dd.ab
。driveimage.dd.ac
將分割映像還原到來源磁碟機的命令是什麼?我希望它會這樣簡單:
dcfldd if=driveimage.dd of=/dev/sourcedrive
然後會dcfldd
自動偵測包含它們的目錄中的所有檔案driveimage.dd
並將它們再次拼接在一起嗎?
答案1
您可以使用 cat 輕鬆地重新組合影像,並將其通過管道傳輸到 dcfldd 以獲得良好的狀態輸出。
cat driveimage.dd.* | dcfldd of=/dev/sourcedrive