博主头像
mxd's Blog

"The quieter you become,the more you are able to hear."

在 Linux 中显示 dd 进度

dd 命令是 GNU 核心实用程序(又名 coreutils)的一部分。自 coreutils 版本 8.24 起,此实用程序已内置 dd 进度指示器。要检查 Linux 操作系统上 coreutils 的版本,只需运行以下命令:

dd --version

dd
dd

Ubuntu 16.04、Debian 9 和基于 Arch Linux 的发行版拥有最新版本 8.25。要让 dd 显示进度,您需要添加 status=progress 选项,如下所示:

sudo dd if=/path/to/iso/file of=/dev/sdX bs=4M status=progress

status
status

您可以看到已经复制了多少、已经过去了多少秒以及写入速度。

在 Linux 中显示 dd 进度
https://blog.mxdyeah.top/mxdyeah_blog_post/51.html
本文作者 mxdyeah
发布时间 2024-07-21
许可协议 CC BY-NC-SA 4.0
发表新评论