个人工具

“UbuntuHelp:AddUsersHowto/zh”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
Options
Graphical Ubuntu
第15行: 第15行:
 
图形界面是最简单的,而命令行则用于产生多任务同时运行的可能性.
 
图形界面是最简单的,而命令行则用于产生多任务同时运行的可能性.
  
=== Graphical Ubuntu ===
+
=== Ubuntu下图形界面 ===
'''Location:''' ''System'' > ''Administration'' > ''Users and Groups''
+
'''转到:''' "系统" > "系统管理" > "用户和组"(''System'' > ''Administration'' > ''Users and Groups'')
 +
 
  
 
https://help.ubuntu.com/community/AddUsersHowto?action=AttachFile&do=get&target=AddUser1.png
 
https://help.ubuntu.com/community/AddUsersHowto?action=AttachFile&do=get&target=AddUser1.png
  
Press ''+ Add User'', this will open up the ''User Account Editor''. The minimum requirements are Username and password. For the Username, do '''not''' use spaces, and '''do''' use ASCII charactersOn the ''User privileges'' tab, add privileges that the new user will have access to, such as ''use audio devices''.
+
按  ''+ 添加用户(Add User)'' , 会打开 ''新建用户帐户(User Account Editor)'' . 至少要用户名和密码. 用户名'''不能'''使用空格, '''不能'''使用 ASCII码''用户权限(User privileges)'' 标签中, 添加新用户可访问的权限, 例如 ''使用音频设备(use audio devices)''.
  
 
https://help.ubuntu.com/community/AddUsersHowto?action=AttachFile&do=get&target=AddUser2.png
 
https://help.ubuntu.com/community/AddUsersHowto?action=AttachFile&do=get&target=AddUser2.png

2007年6月19日 (二) 18:50的版本


信息

当Ubuntu或Kubuntu刚刚安装完成,就会创建一个单独的用户.创建额外的帐户来登录您的系统也是可行的.

选项

添加一个用户有多种方法,然而,本维基只是简要论述最简单最常见的方法.以下是两种方法:

  • 图形界面
  • 命令行 - adduser

图形界面是最简单的,而命令行则用于产生多任务同时运行的可能性.

Ubuntu下图形界面

转到: "系统" > "系统管理" > "用户和组"(System > Administration > Users and Groups)


AddUsersHowto?action=AttachFile&do=get&target=AddUser1.png

+ 添加用户(Add User) , 会打开 新建用户帐户(User Account Editor) . 至少要用户名和密码. 用户名不能使用空格, 也不能使用 ASCII码. 在 用户权限(User privileges) 标签中, 添加新用户可访问的权限, 例如 使用音频设备(use audio devices).

AddUsersHowto?action=AttachFile&do=get&target=AddUser2.png

Graphical Kubuntu

Location: Kmenu > System Settings > Users & Groups

AddUsersHowto?action=AttachFile&do=get&target=AddUser3.png

Press Administrator Mode, this will pop up a password box. Enter your password. Press New..., this will open up the User Account - KDE Control Module. The minimum requirements are Username and password. For the Username, do not use spaces, and do use ASCII characters. On the Secondary Groups area, press Select..., and add priviledges that the new user will have access to.

AddUsersHowto?action=AttachFile&do=get&target=AddUser4.png

Command-line

To add a user you must use the sudo command (for an explanation of what that means, see the RootSudo page). Here are the commands:

To add a user. NOTE: do not use the useradd command.

# sudo adduser <username>

To see the options for adding a user try the man command.

# man adduser

You might also wish to create a new group for your users.

# sudo addgroup <groupname>

To add a new user to a existing group you would do this:

# sudo adduser <username> audio

To add an existing user to an existing group you can use the same command:

# sudo adduser <username> <groupname>