1 | dd if=/dev/sdx of=/dev/sdy |
1 | dd if=/dev/sdx of=/path/image |
1 | dd if=/dev/sdx | gzip >/path/image.gz |
1 | dd if=/path/image of=/dev/sdx |
1 | gzip -dc /path/image.gz | dd of=/dev/sdx |
1 | dd if=/dev/sdx of=/path/file count=1 bs=512 |
1 | dd if=/path/file of=/dev/sdx |
1 | dd if=/dev/fd0 of=disk.img count=1 bs=1440k |
1 | dd if=filename of=/dev/fd0 bs=36b conv=sync |
1 | dd if=testfile of=/dev/fd0 bs=720b conv=sync |
1 | dd if=/dev/mem of=/root/mem.bin bs=1024 |
1 | dd if=/dev/cdrom of=/root/cdrom.iso |
1 | dd if=/dev/zero of=/swapfile bs=1024 count=262144 |
1 | mkswap /swapfile |
1 | swapon /swapfile |
1 | /swapfile swap swap defaults 0 0 |
1 | dd if=/dev/urandom of=/dev/hda1 |
1 2 3 4 | dd if=/dev/zero bs=1024 count=1000000 of=/root/testfile dd if=/dev/zero bs=2048 count=500000 of=/root/ testfile dd if=/dev/zero bs=4096 count=250000 of=/root/ testfile dd if=/dev/zero bs=8192 count=125000 of=/root/ testfile |
1 2 | dd if=/dev/zero of=/root/testfile bs=1024 count=1000000 dd if=/root/testfile bs=64k | dd of=/dev/null |
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |