中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

linux dd命令

時(shí)間:2019-06-24

linux命令_linux vi命令_linux解壓命令

Pre: 今天使用Nvidia Nano開發(fā)板,需要將下載的系統(tǒng)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.

參數(shù):

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

 上一個(gè)教程:linux的 find 命令詳解