Linux Manual
Configurations
SSH Login
禁用密码登录,仅允许密钥登录,防止服务器密码被暴力破解
如果本地无 SSH 配置则生成
ssh-keygen -t rsa -b 4096
- 按提示保存为
~/.ssh/id_rsa
- 按提示保存为
将公钥发送到服务器
ssh-copy-id <username>@<Server IP>
- 输入密码完成登录
修改服务器 SSH 配置
ssh <username>@<Server IP>
此时已经无需输入密码就完成登录
vim /etc/ssh/sshd_config
修改以下内容:
PermitRootLogin prohibit-password PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys PasswordAuthentication no PermitEmptyPasswords no ChallengeResponseAuthentication no
systemctl restart sshd
Scripts
dd
curl -O https://raw.githubusercontent.com/bin456789/reinstall/main/reinstall.sh || wget -O reinstall.sh $_
- 详细使用说明请见 bin456789/reinstall · GitHub
(国内服务器)换源
https://github.com/SuperManito/LinuxMirrors
- 按提示选择更换的源