码迷,mamicode.com
首页 > 其他好文 > 详细

centos用户权限修改

时间:2016-01-04 17:04:07      阅读:1209      评论:0      收藏:0      [点我收藏+]

标签:anywhere   用户   reported   file   mini   

一、出现问题的原因

    今天安装了centos6.5的系统,是装的图形界面。但是又不想重装成mini版。所有就准备修改系统问题,让系统开机自动进入命令模式。

二、错误提示

    登录的是普通用户,修改/etc/inittab 文件

    最后一行默认是:

    id:5:initdefault:     #默认进入图像界面

    只要将5修改成3即可开机自动进入密令行模式。

    但是修改保存时收到提示:

    xxx is not in the sudoers file.  This incident will be reported。

三、解决办法

   修改/etc/sudoers文件。普通用户是无法修改这个文件的,需切换成root用户。

    1、/etc/sudoers 文件是只读文件,需先修改文件权限属性

    chmod u+w /etc/sudoers

    2、vim /etc/sudoers,找到如下信息:   

    ## Allow root to run any commands anywhere

    root    ALL=(ALL)     ALL

    在root下添加一行,其中leo为你的用户名。修改完wq保存退出。

    leo   ALL=(ALL)     ALL

    3、修改完后取消写权限

    chmod u-w /etc/sudoers

四:修改完后你用su - 即可获得root权限(su 用户名 #切换用户)


 


本文出自 “非常强壮的蚂蚁” 博客,请务必保留此出处http://leozhang2016.blog.51cto.com/9419901/1731378

centos用户权限修改

标签:anywhere   用户   reported   file   mini   

原文地址:http://leozhang2016.blog.51cto.com/9419901/1731378

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!