添加普通用户临时su权限 ======== ### 切换到root用户权限 `$ su` ### 查看 __/etc/sudoers__ 文件权限,如果只读权限,修改为可写权限 `# ls -l /etc/sudoers` `# chmod 777 /etc/sudoers` ### 编辑/etc/sudoer...
分类:
其他好文 时间:
2015-01-27 09:35:08
阅读次数:
175
(1)修改了/etc/sudoer之后报错,sudoworldwritableSolution:pkexecchmod0440/etc/sudoers(2)添加其他用户的sudo权限Solution:1、用root帐号登录或者su到root。2、增加sudoers文件的写权限:chmodu+w/etc/sudoers3、vim/etc/sudoers找到rootALL=(ALL)ALL在这行下边添加dituhuiAL..
分类:
系统相关 时间:
2014-10-04 04:24:56
阅读次数:
285
管理安装、升级和卸载软件最简单的方法就是使用Debian上的APT(高级包管理工具)。如果一个软件被打包成Debian上的包并且适用于树莓派的ARM架构,那么这个软件包同样兼容于Raspbian。
安装或者卸载软件包的时候你需要root用户权限,因此你的用户必须是sudoer用户,或者你必须使用root用户登录。更多信息参考用户管理和root用户。
安装新的包,或者更新已有的包,你需要...
分类:
其他好文 时间:
2014-09-29 15:41:11
阅读次数:
335
Version:7.6
一、图形界面与命令行相互切换
最初我们只能以我们创建的普通用户登录到默认的桌面(gnome)中去。
从图形界面切换到命令行:CTRL+ALT+SHIFT + F1
从命令行切换到图形界面:ALT+F7
二、将我们创建的普通用户加入到sudoers里面(允许使用sudo命令)
vi /etc/sudoers
你会看到一...
分类:
其他好文 时间:
2014-08-20 10:31:46
阅读次数:
226
一 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
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
//SituationSystem prompts"xxx is not in the sudoers file"(xxx equals the user name)while executing command "sudo":sudo-iPassword:xxx isnotinthe sudoer...
分类:
其他好文 时间:
2014-07-11 22:09:28
阅读次数:
216
Two ways to use sudo command for a standard
user account:First,If you want to use sudo command for a standard user account,
then you need to add this ...
分类:
其他好文 时间:
2014-04-28 00:42:49
阅读次数:
616