一 sudo命令不能用
1 使用su切换到root用户,命令:
su
2 使用名:vim /etc/sudoers添加sudoer用户,命令:
vim /etc/sudoers
找到root=(ALL:ALL)ALL,在下面添加:
%你的用户名=(ALL)ALL
如果不想输入密码,可如下书写:
%你的用户名 ALL=(ALL) NOPASSWD: ALL
二 中文...
分类:
其他好文 时间:
2014-08-13 22:40:37
阅读次数:
297
错误信息:sudo: /etc/sudoers is world writablesudo: no valid sudoers sources found, quitting解决办法:修复磁盘权限就可以了
分类:
其他好文 时间:
2014-08-12 16:58:44
阅读次数:
689
某次重启系统,使用sudo命令时突然出现问题,用户不在sudoers文件中,无法使用sudo权限。重启进入恢复模式,依然无法修改sudoers文件,可以设置root($suroot)密码,但是正常进入系统之后依然无效。(此时系统处于read-only模式),因此需要进入读写模式设置:1.重启进入恢复模式..
分类:
其他好文 时间:
2014-08-09 11:50:37
阅读次数:
269
自己作死,没有用visudo 修改/etc/sudoers 文件,结果导致sudoers文件出错,sudo无法使用。在网上找了一圈才搞好,哎!首先,不要慌,重启电脑,切换到recovery 模式:###########开机后长按 shift键,进入选择启动的界面光标移动到advance 模式 (14...
分类:
其他好文 时间:
2014-08-06 14:20:31
阅读次数:
204
1、开机狂按shift键,进入grub页面,用上下键移到第二行的恢复模式,按e(注意不是回车) 即Ubuntu,With Linux 3.2.0-23-generic(recovery mode)? 2、把ro recovery nomodeset 改成rw single init=/bin/bash ...
分类:
其他好文 时间:
2014-08-02 18:34:04
阅读次数:
263
添加非root用户 under root permision adduser?wedate
passwd?wedate—>?input?the?new?password
chmod?u+w?/etc/sudoers
vim?/etc/sudoers
添加?wedate?????All=(ALL)?????
ALL?在root之后...
分类:
数据库 时间:
2014-07-29 16:08:39
阅读次数:
597
1. 如何将用户添加到sudoer列表中:chmod +w /etc/sudoers echo 'mirandam ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers chmod -w /etc/sudoers exit 2. For循环的例子:// 压缩当前目录下所有后...
分类:
系统相关 时间:
2014-07-28 15:21:13
阅读次数:
255
开始用linux的时候会遇到用户权限问题,比如安装软件的时候经常会提示权限不足,下面介绍给普通用户授予root权限。找到 cd /etc/sudoers可以看到用户的权限是:只有读取的权限(以下操作都是用root用户)-r--r-----. 1 root root 4029 Jul 22 19...
分类:
其他好文 时间:
2014-07-23 12:34:26
阅读次数:
336
安装好Debian后,默认只有su命令可用,还不能使用sudo如果没有安装sudo,则在root用户下apt-get install sudo设置sudoers配制文件vim /etc/sudoers在root的下一行添加一行username ALL=(ALL) ALL #其中use...
分类:
其他好文 时间:
2014-07-22 23:38:57
阅读次数:
337
is not in the sudoers file
分类:
其他好文 时间:
2014-07-22 00:35:33
阅读次数:
170