.tar.bz2文件解压命令
2021-01-30
禁用root账号登录
创建新的用户
创建一个test用户useradd test
设置密码passwd test设置test用户密码
此时test用户已经可以通过ssh登录
禁用root用户登录
ctrl+c 输入/PermitRootLogin 回车,查找
修改vi /etc/ssh/sshd_config中的PermitRootLogin yes为PermitRootLogin no(如果没有请添加)
重启sshd
systemctl restart sshd或systemctl restart sshd.service, 此时root账号已经无法登录
配置test用户成sudo用户(如果不需要sudo用户无需配置)
使用root配置sudo用户
如果当前不是root登录, 请使用su root登录root账号
增加sudo用户
使用vi /etc/sudoers打开文件
在root ALL=(ALL) ALL下增加test ALL=(ALL) ALL保存即可
如果文件编辑没有权限使用chmod u+w /etc/sudoers增加写入权限修改后使用chmod u-w /etc/sudoers去掉权限
作者:Minicoding
链接:https://www.jianshu.com/p/b1bc1415e7af
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
2021-01-30
2021-01-22
2021-08-17
2021-01-11
2021-01-30
2021-01-31
2021-06-22
2021-05-24
评论