访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

linux dd命令

时间:2019-06-24

linux命令_linux vi命令_linux解压命令

Pre: 今天使用Nvidia Nano开发板,需要将下载的系统zip包linux命令linux命令,安装到TF卡中,需要使用dd命令,所以记录一下dd命令的使用情况。

unzip -p ~/Downloads/jetson-nano-sd-r32.1.1-2019-05-31.zip | sudo /bin/dd of=/dev/sdc bs=1M status=progress

描述

Copy a file, converting and formatting according to the operands.

参数:

bs=BYTES

read and write up to BYTES bytes at a time

cbs=BYTES

convert BYTES bytes at a time

conv=CONVS

convert the file as per the comma separated symbol list

count=N

copy only N input blocks

linux解压命令_linux命令_linux vi命令

ibs=BYTES

read up to BYTES bytes at a time (default: 512)

if=FILE

read from FILE instead of stdin

iflag=FLAGS

read as per the comma separated symbol list

obs=BYTES

write BYTES bytes at a time (default: 512)

of=FILE

write to FILE instead of stdout

oflag=FLAGS

write as per the comma separated symbol list

seek=N skip N obs-sized blocks at start of output

linux命令_linux解压命令_linux vi命令

lcase change upper case to lower case

ucase change lower case to upper case

sparse try to seek rather than write the output for NUL input blocks

swab swap every pair of input bytes

sync pad every input block with NULs to ibs-size; when used with block or unblock, pad with spaces rather

than NULs

excl fail if the output file already exists

nocreat

do not create the output file

notrunc

do not truncate the output file

noerror

continue after read errors

linux命令_linux解压命令_linux vi命令

fdatasync

physically write output file data before finishing

fsync likewise, but also write metadata

Each FLAG symbol may be:

append append mode (makes sense only for output; conv=notrunc suggested)

direct use direct I/O for data

directory

fail unless a directory

dsync use synchronized I/O for data

sync likewise, but also for metadata

fullblock

accumulate full blocks of input (iflag only)

nonblock

use non-blocking I/O

 上一个教程:linux的 find 命令详解