如何在bash中本地更改主机名

发布于 2024-12-04 05:10:43 字数 1459 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红ご颜醉 2024-12-11 05:10:43

只需提供 -C 标志即可,文件末尾的内容只是注释,除了区分之外不用于任何其他用途。

ssh-keygen -C“somecomment@somehostname”

Just provide the -C flag, the stuff at the end of the file is only a comment, not used for anything else except differentiation.

ssh-keygen -C "somecomment@somehostname"

鱼忆七猫命九 2024-12-11 05:10:43

密钥文件 (id_rsa.pub) 末尾的主机名只是注释。您可以使用任何编辑器进行更改。

或者如果您确实想从命令行执行此操作:

   awk '{$3 = "[email protected]"; print;}' id_rsa.pub > new_id_rsa.pub

The hostname at the end of the key file (id_rsa.pub) is just a comment. You can change is with any editor.

or if you really want to do it from the command line:

   awk '{$3 = "[email protected]"; print;}' id_rsa.pub > new_id_rsa.pub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文