一,Debian安装与启用sudo命令
刚安装好的Debian默认还没有sudo功能。
1. 先进入root用户,调用下面的命令后,输入密码
$su
2. 安装sudo
# apt-get install sudo
3. 修改 /etc/sudoers 文件,
#nano /etc/sudoers
增加一行 user ALL=(ALL:ALL) ALL
二,debian系操作系统上安装 SSH 服务
使用命令“apt install openssh-server -y”安装openssh-server软件。
$sudo apt install openssh-server -y
首先使用apt-get update命令更新apt源列表。
$sudo apt-get update
然后使用apt-get install命令在debian上安装openssh服务器。
$sudo apt-get install openssh-server
现在启动并启用debian ssh服务器以在系统重启时启动。 增加一个启动服务
$sudo systemctl start ssh.service
systemctl启用ssh.service
还运行netstat命令以确保ssh端口22已打开并正在运行。
修改ssh端口号
$sudo nano /etc/ssh/sshd_config
增加 或是修改 Port
修改完后保存配置文件,重启ssh服务
$sudo systemctl restart sshd.service
新开一个远程窗口进行连接,此时使用22端口就无法进行通信了,将端口号改为自定义的可以远程
三 、设置默认语言
使用 dpkg-reconfigure locales 设置默认语言为英文
$sudo dpkg-reconfigure locales
标签:sudo,get,openssh,Debian11.6,apt,ssh,install,最小化,安装 From: https://www.cnblogs.com/Thenext/p/17081435.html