Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

使用 cat 替代 dd

# dd version
dd if=image.iso of=/dev/sdb bs=4M
# cat version
cat image.iso >/dev/sdb
# cat version with progress meter
cat image.iso | pv >/dev/sdb