web-dev-qa-db-ja.com

GUIを使用して管理者ユーザーを設定する-コマンドラインと同等ですか?

GUIからユーザーを管理者として指定するには、そのユーザーのプロパティを開き、「管理者」オプションとしてアカウントタイプを選択します。

enter image description here

ユーザーが既に存在する場合、このアカウントタイプを選択すると、システムレベルでどのような効果がありますか?Sudoグループに追加、/etc/passwdまたは/etc/sudoers...etcへの変更)

そして、私はこれをどのように達成しますか(ユーザーを「管理者」として指定する)コマンドラインから?

7
Aaron

12.04より前のUbuntuの場合、ユーザーが既に存在すると仮定

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行は、Sudoグループのメンバーがadministration特権を持っていることを示しています。この回答の先頭にあるコマンドは、ユーザーをUbuntuのバージョンに応じてSudoまたはadminグループに追加します使用しています。ここに詳細情報があります:

RootSudo-Community Ubuntu Documentation

5
Warren Hill