你的问题“在 Debian 配 SecureCRT”通常有两种理解,下面分别说明:
SecureCRT 是 VanDyke 公司的商业 SSH 客户端,官方支持 Linux(包括 Debian)。
sudo dpkg -i scrt-*.deb
sudo apt -f install # 修复依赖
scrt
或在菜单中搜索 SecureCRT
~/.ssh/authorized_keys如果你是用 SecureCRT 连 Debian 服务器,那重点在服务器 SSH 配置。
sudo apt update
sudo apt install openssh-server
编辑:
sudo nano /etc/ssh/sshd_config
建议:
Port 22
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes
sudo systemctl restart ssh
sudo ufw allow 22
UseDNS no
如果你能具体说明:
我可以给你更精确的配置步骤。