我的 ssh_config 文件乱了。我该如何恢复原始文件?

我的 ssh_config 文件乱了。我该如何恢复原始文件?

我正在 Ubuntu 上设置 ssh。

我不小心将 的内容复制到了文件sshd_configssh_config!有地方可以找到原始内容吗?幸好我没有动ssh_config。我只是设置了sshd_config

答案1

您可以从 OpenSSH 客户端包中获取该文件:

apt-get download openssh-client
dpkg-deb --fsys-tarfile openssh-client_*.deb | sudo tar -xC / ./etc/ssh/ssh_config

这会ssh_config将该包中的 直接提取到其目标位置/etc/ssh/

相关内容