背景:
debian 11 版本bullseye
系统没有自带vim 和 ssh
自带终端使用起来非常不友好,而且没有和其他系统实现资源之间的共享。
步骤:
1、第一步首先最为关键,换源,虽然在之前的笔记有记录过,不过再熟悉一遍
本次使用浙江大学镜像源:Debian | ZJU Mirror
选好版本:bullseye
deb https://mirrors.zju.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.zju.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.zju.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.zju.edu.cn/debian-security bullseye-security main contrib non-free
先备份自带源 cp /etc/apt/sources.list {,.bk}
再把上面镜像源4条信息添加到文件 /etc/apt/sources.list
推荐使用nano 感觉使用也挺舒服(系统默认自带,tips:alt+6:复制;ctrl+u:粘贴;ctrl+x:退出;y:保存;n:不保存)
2、谨记一点更换源后(tips:测试一下外网 ping baidu.com),一定要:
apt-get update
apt-get upgrade
3、查信息有两种方案:
一,1、apt-get install ssh
2、修改sshd_config
要修改先备份:cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bk
3、nano /etc/ssh/sshd_config
重点修改sshd_config 信息如下:
Port 22
PermitRootLogin yes
PasswordAuthentication yes
4、重启服务:
/etc/init.d/ssh restart 或者 systemctl restart ssh
重启时这里报一个错,解决方案参照:ssh服务无法启动 报错:job for sshd.service failed_sshd启动报错_小白走天下的博客-CSDN博客
执行:sshd -t ,再创建缺失的文件夹即可
tips: systemctl restart ssh 重启
systemctl status ssh 状态
systemctl stop ssh 关闭
end~
二、
1、首先更新软件列表
apt-get update
2、安装ssh 服务
apt-get install openssh-server
3、打开 /etc/ssh/sshd_config 修改添加配置信息 可使用
nano /etc/ssh/sshd_config (谨记修改前先备份)
添加内容:
PermitRootLogin yes
PasswordAuthentication yes
4、重启ssh 服务
/etc/init.d/ssh restart
5、登录测试,成功~撒❀