- 注册时间
- 2012-9-20
- 最后登录
- 2024-11-14
- 阅读权限
- 200
- 积分
- 5477
- 精华
- 0
- 帖子
- 1152
|
- <font class="Apple-style-span" color="#000102" style="font-family: Georgia, 宋体, Arial, sans-serif; font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);">sudo可以让非root用户具有管理员的权限,安装好的Debian后还不能使用sudo,需要使用root用户登陆后安装sudo命令。
- </font><code style="color: rgb(102, 102, 102); font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);"><font class="Apple-style-span" color="#000102"><font class="Apple-style-span" face="'Courier New'">#apt-get install sudo</font></font></code><font class="Apple-style-span" color="#000102" style="font-family: Georgia, 宋体, Arial, sans-serif; font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);">
- 安装后,就可以给你的帐号设置管理员权限了
- </font><code style="color: rgb(102, 102, 102); font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);"><font class="Apple-style-span" color="#000102"><font class="Apple-style-span" face="'Courier New'">#vim /etc/sudoers</font></font></code><font class="Apple-style-span" color="#000102" style="font-family: Georgia, 宋体, Arial, sans-serif; font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);">
- 添加一行 username ALL=(ALL) ALL #这里的username就是你要给予一定权限的用户
- 然后保存,退出root,然后使用username用户登陆。应该就有sudo权限了。</font>
复制代码 |
|