Linux Manual

2025 年 2 月 18 日 星期二(已编辑)
8

Linux Manual

Configurations

SSH Login

禁用密码登录,仅允许密钥登录,防止服务器密码被暴力破解

  1. 如果本地无 SSH 配置则生成

    ssh-keygen -t rsa -b 4096
    • 按提示保存为 ~/.ssh/id_rsa
  2. 将公钥发送到服务器

    ssh-copy-id <username>@<Server IP>
    • 输入密码完成登录
  3. 修改服务器 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 $_

(国内服务器)换源

https://github.com/SuperManito/LinuxMirrors
  • 按提示选择更换的源

使用社交账号登录

  • Loading...
  • Loading...
  • Loading...
  • Loading...
  • Loading...