通过 GUI 设置管理员用户-等效命令行?

通过 GUI 设置管理员用户-等效命令行?

要从 GUI 中将用户指定为管理员,您只需打开该用户的属性并选择帐户类型作为“管理员”选项。

在此处输入图片描述

如果用户已经存在,选择该账户类型在系统层面有什么影响? (添加到须藤组,修改/etc/passwd 或 /etc/sudoers...等)

我该如何实现这一点(将用户指定为“管理员”)从命令行?

答案1

对于 Ubuntu 12.04 之前的版本,假设用户已经存在

sudo  adduser username admin

适用于 12.04 及更高版本

sudo  adduser username sudo 

替换username为用户的名称。

如果你检查 sudoers 文件,sudo cat /etc/sudoers你会看到这个(从 12.04 开始)或类似的东西


#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults    env_reset
Defaults    secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

该行%sudo ALL=(ALL:ALL) ALL表示,须藤组有行政权限。本答案开头的命令将用户添加到须藤或者行政根据您使用的 Ubuntu 版本进行分组。更多信息请参见此处:

RootSudo - 社区 Ubuntu 文档

相关内容