本文最后更新于 2024-08-27,文章内容距离上一次更新已经过去了很久啦,可能已经过时了,请谨慎参考喵。

注意安装的时候一定不要勾选网络源!!!

更换国内源

su
nano /etc/apt/sources.list

粘贴:

# Debian 12.6
deb https://mirrors.cernet.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb-src https://mirrors.cernet.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb https://mirrors.cernet.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb-src https://mirrors.cernet.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb https://mirrors.cernet.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
deb-src https://mirrors.cernet.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
deb https://mirrors.cernet.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src https://mirrors.cernet.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb https://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src https://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware

Ctrl+O 保存,按 Enter 确认写入,按 Ctrl+X 退出

更新源:

apt update

安装vim

apt install vim

增加sudo权限

vim /etc/sudoers

输入:

<用户名> ALL=(ALL:ALL) ALL

保存请用 wq!

然后就可以退出 root 用户,使用 sudo 命令了

配置临时代理

注:这种代理仅当前终端对话生效,如果要长期生效,请写入 .bashrc 文件中。

export http_proxy=http://proxy_address:port
export https_proxy=https://proxy_address:port
export ALL_PROXY=socks://proxy_address:port

httphttps 代理不要省略 http://

配置ROOT用户SSH登录

编辑 sshd 配置文件:

sudo vim /etc/ssh/sshd_config

修改或取消注释下面两行:

PermitRootLogin yes
PasswordAuthentication yes

重启 sshd 服务:

sudo systemctl restart sshd

需要注意的是,如果还是不行,请检查 Selinux 和 Firewalld 是否允许 root 用户进行远程连接。

!!!允许 root 用户使用密码进行 ssh 登录是很不安全的操作,请务必确认自己是否需要。