标签:perm src pass color pubkey pre ima open col
1、进入root
Ubuntu 默认root无法登陆,这里只能使用安装系统的时候创建的用户
用户syaving 密码111111
如上图操作就能进入root管理界面
2、远程连接,安装ssh
Ubuntu默认安装了ssh client端但没有安装Server端,所以首先安装ssh-server服务。命令如下:
apt-get install openssh-server
Ubuntu默认安装的SSH client为openssh-client,如果你的系统没有安装的话,再用apt-get安装上即可。然后再确认sshserver是否启动了
修改/etc/ssh/sshd-config文件.
将其中的PermitRootLogin no修改为yes
PubkeyAuthentication yes修改为no
AuthorizedKeysFile .ssh/authorized_keys前面加上#屏蔽掉,
PasswordAuthentication no修改为yes就可以了。
标签:perm src pass color pubkey pre ima open col
原文地址:http://www.cnblogs.com/syaving/p/7750267.html