在 Ubuntu 上使用 SecureCRT 一般有两种场景:
下面分别说明。
SecureCRT 官方提供 Linux 版本(DEB / RPM)。
下载得到类似:
scrt-9.x.x-xxxx.ubuntu20.x86_64.deb
sudo dpkg -i scrt-*.deb
sudo apt -f install # 修复依赖
scrt
或:
应用程序菜单 → SecureCRT
File → Connect → New Session22sudo apt update
sudo apt install openssh-server
sudo systemctl enable --now ssh
sudo systemctl status ssh
sudo ufw allow 22
ip a 查看)ssh-keygen
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
id_rsa)编辑 /etc/ssh/sshd_config:
UseDNS no
然后:
sudo systemctl restart ssh
如果你是想 “Ubuntu 当客户端连别的机器” 还是 “别的机器用 SecureCRT 连 Ubuntu”,可以告诉我,我可以给更具体的步骤。