Home > Operation and Maintenance > Linux Operation and Maintenance > Detailed example of how to create a user useradd command in Linux

Detailed example of how to create a user useradd command in Linux

黄舟
Release: 2017-08-08 13:08:39
Original
3440 people have browsed it

This article uses code examples to introduce the relationship between the adduser and useradd commands and the method of using the useradd command to add users. Friends in need can refer to it

1, adduser and The relationship between the useradd command

Code example:


[root@larrywen opt]# type adduser 
adduser is /usr/sbin/adduser 
[root@larrywen opt]# type useradd 
useradd is /usr/sbin/useradd 
[root@larrywen opt]# which useradd 
/usr/sbin/useradd 
[root@larrywen opt]# which adduser 
/usr/sbin/adduser 
[root@larrywen opt]# ls -l /usr/sbin/adduser /usr/sbin/useradd 
lrwxrwxrwx. 1 root root   7 Jul 21 14:11 /usr/sbin/adduser -> useradd 
-rwxr-x---. 1 root root 97040 Feb 24 2011 /usr/sbin/useradd
Copy after login

2. Use useradd Command to add user


[root@larrywen /]# useradd zhink 
[root@larrywen /]# id zhink 
uid=501(zhink) gid=502(zhink) groups=502(zhink)
Copy after login

Summary

The above is the detailed content of Detailed example of how to create a user useradd command in Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template