您的当前位置:首页Ubuntu添加删除用户

Ubuntu添加删除用户

2020-05-21 来源:飒榕旅游知识分享网
Ubuntu添加删除⽤户

Ubuntu 添加删除⽤户

为了能够创建和删除⽤户,您需要以root⾝份或具有sudo权限的⽤户⾝份登录。可以通过两种⽅式在Ubuntu中创建新的⽤户帐户:

从命令⾏通过GUI

从命令⾏添加新⽤户

useradd是⼀个⽤于添加⽤户的最普遍命令(所有发⾏版都⽀持),⽽adduser 是useradd 的友好交互式前端,是⽤Perl编写的。

sudo adduser username

Adding user `username' ...

Adding new group `username' (1001) ...

Adding new user `username' (1001) with group `username' ... Creating home directory `/home/username' ... Copying files from `/etc/skel' ...

命令将向你询问⼀系列的问题。密码是必需的,其他字段都是可选的。

Enter new UNIX password: Retype new UNIX password:

passwd: password updated successfullyChanging the user information for username

Enter the new value, or press ENTER for the default Full Name []: Room Number []: Work Phone []: Home Phone []: Other []:

Is the information correct? [Y/n]

该命令将创建新⽤户的家⽬录,并将⽂件从/etc/skel⽬录复制到⽤户的主⽬录。在主⽬录中,⽤户可以编写,编辑和删除⽂件和⽬录。或者:

sudo useradd -r -m -s /bin/bash dongyuanxin_2016150127-r:建⽴系统账号

-m:⾃动建⽴⽤户的登⼊⽬录-s:指定⽤户登⼊后所使⽤的shell

在 Ubuntu18.04 中,不会在创建⽤户的时候⾃动提⽰设置密码。需要⼿动执⾏:sudo passwd dongyuanxin_2016150127。来设置新⽤户的密码。

默认情况下,在Ubuntu上,sudo组的成员被授予sudo访问权限。如果您希望新创建的⽤户具有管理权限,请将⽤户添加到sudo组:

sudo usermod -aG sudo username

或者

编辑 /etc/sudoer ⽂件

Defaults env_resetDefaults mail_badpass

Defaults secure_path=\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin\"# Host alias specification# User alias specification# Cmnd alias specification# User privilege specificationroot 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:cjl ALL=NOPASSWD:ALL#includedir /etc/sudoers.d

添加⽤户sudo 权限

通过GUI添加新⽤户

如果您不喜欢命令⾏,则可以通过GUI添加新的⽤户帐户。

1. 在“活动”屏幕中,搜索“⽤户”,然后单击“添加或删除⽤户并更改密码”。2. 在新窗⼝中单击Unlock按钮,然后在出现提⽰时输⼊⽤户密码。3. 单击Add User按钮,将出现“添加⽤户”对话框:

4. 选择新⽤户是标准⽤户还是管理员⽤户并输⼊信息。完成后,单击Add按钮。

如何删除⽤户

如果不再需要⽤户帐户,可以从命令⾏或通过GUI删除它。

从命令⾏删除⽤户

您可以使⽤两个命令⾏⼯具来删除⽤户帐户:userdel和deluser。在Ubuntu上,建议您使⽤deluser命令,因为它⽐userdel 更友好。要删除⽤户⽽不删除⽤户⽂件,请运⾏:

sudo deluser username

如果要删除并且⽤户的家⽬录和邮件使⽤--remove-home选项:

sudo deluser --remove-home username

通过GUI删除⽤户

1. 在“活动”屏幕中,搜索“⽤户”,然后单击“添加或删除⽤户并更改密码”。

2. 在新窗⼝中单击Unlock按钮,然后在出现提⽰时输⼊⽤户密码。输⼊密码后,该Unlock按钮将变为绿⾊Add User按钮。3. 单击要删除的⽤户名,您将Remove User..在右下⾓看到⼀个红⾊按钮。

4. 单击Remove User..按钮,系统将提⽰您是保留还是删除⽤户主⽬录。单击其中⼀个按钮将删除该⽤户。

因篇幅问题不能全部显示,请点此查看更多更全内容