个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
第5行: 第5行:
 
== Options ==
 
== Options ==
 
There is more than one way to add a user, however this wiki page will briefly discuss the easiest and most common ways. The two ways shown are:
 
There is more than one way to add a user, however this wiki page will briefly discuss the easiest and most common ways. The two ways shown are:
# Graphical
+
<ol><li>Graphical
 
2. Command-line - <code><nowiki>adduser</nowiki></code>
 
2. Command-line - <code><nowiki>adduser</nowiki></code>
 
Graphical is the easiest solution, while the command-line offers the possibilities of multiple tasks at one time.
 
Graphical is the easiest solution, while the command-line offers the possibilities of multiple tasks at one time.

2007年12月6日 (四) 14:38的版本


Information

When Ubuntu and/or Kubuntu are initially installed, a single user account was created. It is possible to create additional user logins on your system.

Options

There is more than one way to add a user, however this wiki page will briefly discuss the easiest and most common ways. The two ways shown are:

  1. Graphical 2. Command-line - adduser Graphical is the easiest solution, while the command-line offers the possibilities of multiple tasks at one time.

    Graphical Ubuntu

    Location: System > Administration > Users and Groups 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 characters. On the User privileges tab, add privileges that the new user will have access to, such as 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>