请教这两条Linux的dd命令是什么意思?dd bs=32 if=boot of=Image skip=1 dd bs=512 if=system of=Image

问题描述:

请教这两条Linux的dd命令是什么意思?dd bs=32 if=boot of=Image skip=1 dd bs=512 if=system of=Image
dd bs=32 if=boot of=Image skip=1
dd bs=512 if=system of=Image

dd bs=32 if=boot of=Image skip=1
以文件boot为输入,以每次32byte的速度读写到文件image,并跳过开头的32byte才开始写入
dd bs=512 if=system of=Image
以文件system为输入,以每次512byte的速度读写到文件image