当前位置:   article > 正文

Linux用户获得超级管理员权限_linux用户获得权限

linux用户获得权限

问题描述

在创建了新的虚拟机和用户后,用户可能还没有超级管理员的操作权限:

[peng@localhost network-scripts]$ sudo su
[sudo] password for peng: 
peng is not in the sudoers file.  This incident will be reported.
  • 1
  • 2
  • 3

解决方法:

  1. 使用su切换到root用户,会需要root的密码:

    [peng@localhost network-scripts]$ su 
    Password: 
    [root@localhost network-scripts]# 
    • 1
    • 2
    • 3
  2. 然后编辑sudoers文件nano /etc/sudoers,找到下面的一行:

    
    ## Allow root to run any commands anywhere
    
    root    ALL=(ALL)   ALL
    • 1
    • 2
    • 3
    • 4
  3. 增加新的用户名即可,我这里新用户为peng,后面ALL=(ALL) ALL照写

    
    ## Allow root to run any commands anywhere
    
    root    ALL=(ALL)   ALL
    peng    ALL=(ALL)   ALL
    • 1
    • 2
    • 3
    • 4
    • 5
  4. 保存退出

一些用户相关常用的操作

  • adduser [用户名] : 新增用户
  • passwd [用户名] : 修改用户密码
  • userdel -r [用户名]: 删除用户
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/469388
推荐阅读
相关标签
  

闽ICP备14008679号