gpt4 book ai didi

linux - 通过 ssh 使用 dd 写一个文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:12:12 26 4
gpt4 key购买 nike

我想通过 ssh 将 .img 文件写入硬盘。

Host A 想执行 dd 将 img 文件写入/dev/sda 。 dd文件位于主机B。

命令应该是什么样子的?

最佳答案

类似于:

(from hosta) ssh hostb cat /the/file.img | dd of=/dev/sda

(from hostb) ssh hosta dd of=/dev/sda < /the/file.img

使用 ssh(和之前的 rsh)I/O 重定向发生在本地主机上,除非您引用它以将其传递到远程主机。比较这三个命令(在所有情况下,date 命令都在 rmthost 上运行),但是:

ssh rmthost date > /tmp/thedate                    ! local file written
ssh rmthost 'date > /tmp/thedate' ! remote file written
ssh rmthost date '>' /tmp/thedate ! remote file written

关于linux - 通过 ssh 使用 dd 写一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35364712/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com