在 Ubuntu(Linux)上使用 SecureCRT,主要有三种常见场景,下面按「最推荐 → 次推荐 → 特殊需求」给你说明,并附上安装、配置、常见问题。
SecureCRT 官方对 Linux 的 GUI 支持并不友好,不建议在 Ubuntu 上直接跑 SecureCRT 桌面版。
sudo apt update
sudo apt install openssh-server
sudo systemctl enable ssh
sudo systemctl start ssh
查看 IP:
ip a
✅ 这是最稳定、最通用的方式
官网(需账号):
https://www.vandyke.com/download/securecrt/
选择:
.tgz 或 .deb.deb(推荐)sudo dpkg -i securecrt-*.deb
sudo apt -f install # 修复依赖
.tgztar -zxvf securecrt-*.tgz
cd securecrt/
./SecureCRT
export LANG=zh_CN.UTF-8
export LC_ALL=zh_CN.UTF-8
或 SecureCRT:
Session Options → Terminal → Appearance → Font
选择支持中文的字体(如 Noto Sans Mono)
Ubuntu 22.04+ 常见:
sudo apt install libpng16-16 libtinfo5
切换到 X11:
登录界面 → 齿轮 → Ubuntu on Xorg
如果你只是想在 Ubuntu 上 SSH 管理服务器,强烈推荐:
ssh user@ip
配合:
tmuxzshoh-my-zsh| 工具 | 是否推荐 |
|---|---|
| SecureCRT (Linux) | ⚠️ 勉强 |
| Termius | ✅✅ |
| MobaXterm | ❌ Linux 不支持 |
| Windows SecureCRT | ✅✅✅ |
✅ Windows 跑 SecureCRT
✅ Ubuntu 只做 SSH Server
✅ 使用密钥认证
✅ 禁用 root 登录
sudo nano /etc/ssh/sshd_config
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes
你可以直接告诉我:
我可以给你 精确到版本的配置方案。