📌  相关文章
📜  linux iso 终端命令 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:59.611000             🧑  作者: Mango

代码示例1
#first check the usb drive 
lsblk
#then -> if= is source and of= is destination/the usb drive name
# you got from lsblk that have the usb drive
dd bs=4M if=/tmp/ubuntu-20.04.1-desktop-amd64.iso of=/dev/sdc conv=fdatasync
#Where bs is read and write BYTES bytes at a time,
#if is the input file, of is the output file. 
#The conv=fdatasync bit is important as dd 
#can return before the write operation finishes.