按照此页面上的说明,该页面最后显示了dd
命令和sync
选项。命令如下:
xzcat ~/ubuntu.img.xz | sudo dd of=/dev/sdX bs=32M sync
我知道dd
它是什么以及它如何工作,但我从未听说过或使用过该sync
选项,它的手动页面输入是这样的:
sync pad every input block with NULs to ibs-size; when used with
block or unblock, pad with spaces rather than NULs
NUL
它是什么,为什么要填充到ibs-size
,为什么还要填充数据块并sync
在dd
命令中使用该选项?为什么不保持它简单易用?
当我尝试sync
使用适当的位置和值运行命令时,出现以下错误:
dd: unrecognized operand ‘sync’
Try 'dd --help' for more information.
dd ... conv=sync
论点。