Ubuntu配置SSH服务

本文主要解决Ubuntu配置SSH服务的问题

1.1.修改可用的agt源

sudo vim /etc/apt/sources.list

1.2.更新代码包

sudo apt-get update

2.1.安装openssh服务

sudo apt-get install openssh-server

2.2.启动ssh服务

sudo /etc/init.d/ssh start
sudo /etc/init.d/ssh resart
sudo ps -e |grep ssh

2.3.编辑配置文件

可以配置root登陆

sudo gedit /etc/ssh/sshd_config
# 注释掉
PermitRootLogin without-password
# 启用
PermitRootLogin yes
service sshd restart

完毕,呵呵呵呵

上一篇:将MPLS编译进linux内核中


下一篇:如何编译安装Linux内核