<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fuseradd</id>
	<title>Comandos de la terminal/useradd - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fuseradd"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/useradd&amp;action=history"/>
	<updated>2026-05-18T10:12:24Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/useradd&amp;diff=6595&amp;oldid=prev</id>
		<title>Rrc en 21:22 16 oct 2014</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/useradd&amp;diff=6595&amp;oldid=prev"/>
		<updated>2014-10-16T21:22:24Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#useradd | useradd]]&lt;br /&gt;
&lt;br /&gt;
== useradd ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# ls -al $( which useradd )&lt;br /&gt;
-rwxr-xr-x 1 root root 119176 Oct 18  2013 /usr/sbin/useradd*&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# ls -al $( which adduser )&lt;br /&gt;
lrwxrwxrwx 1 root root 7 Sep 22 13:33 /usr/sbin/adduser -&amp;gt; useradd*&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Useradd puede modificar /etc/passwd, /etc/shadow, /etc/gshadow y /etc/group.&lt;br /&gt;
También puede crear los carpetas de hogar y archivos spool de correo.&lt;br /&gt;
Su comportamiento se define mediante el archivo /etc/login.defs.&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# cat /etc/login.defs&lt;br /&gt;
# *REQUIRED*&lt;br /&gt;
#   Directory where mailboxes reside, _or_ name of file, relative to the&lt;br /&gt;
#   home directory.  If you _do_ define both, MAIL_DIR takes precedence.&lt;br /&gt;
#   QMAIL_DIR is for Qmail&lt;br /&gt;
#&lt;br /&gt;
#QMAIL_DIR	Maildir&lt;br /&gt;
MAIL_DIR	/var/spool/mail&lt;br /&gt;
#MAIL_FILE	.mail&lt;br /&gt;
&lt;br /&gt;
# Password aging controls:&lt;br /&gt;
#&lt;br /&gt;
#	PASS_MAX_DAYS	Maximum number of days a password may be used.&lt;br /&gt;
#	PASS_MIN_DAYS	Minimum number of days allowed between password changes.&lt;br /&gt;
#	PASS_MIN_LEN	Minimum acceptable password length.&lt;br /&gt;
#	PASS_WARN_AGE	Number of days warning given before a password expires.&lt;br /&gt;
#&lt;br /&gt;
PASS_MAX_DAYS	99999&lt;br /&gt;
PASS_MIN_DAYS	0&lt;br /&gt;
#PASS_MIN_LEN	5&lt;br /&gt;
PASS_WARN_AGE	7&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Min/max values for automatic uid selection in useradd&lt;br /&gt;
#&lt;br /&gt;
UID_MIN			  500&lt;br /&gt;
UID_MAX			60000&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Min/max values for automatic gid selection in groupadd&lt;br /&gt;
#&lt;br /&gt;
GID_MIN			  500&lt;br /&gt;
GID_MAX			60000&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# If defined, this command is run when removing a user.&lt;br /&gt;
# It should remove any at/cron/print jobs etc. owned by&lt;br /&gt;
# the user to be removed (passed as the first argument).&lt;br /&gt;
#&lt;br /&gt;
# USERDEL_CMD	/usr/sbin/userdel_local&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# If useradd should create home directories for users by default&lt;br /&gt;
# On RH systems, we do. This option is ORed with the -m flag on&lt;br /&gt;
# useradd command line.&lt;br /&gt;
#&lt;br /&gt;
CREATE_HOME	yes&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# The password hashing method and iteration count to use for group&lt;br /&gt;
# passwords that may be set with gpasswd(1).&lt;br /&gt;
#&lt;br /&gt;
CRYPT_PREFIX            $2a$&lt;br /&gt;
CRYPT_ROUNDS            8&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Whether to use tcb password shadowing scheme.  Use &amp;#039;yes&amp;#039; if using&lt;br /&gt;
# tcb and &amp;#039;no&amp;#039; if using /etc/shadow&lt;br /&gt;
#&lt;br /&gt;
USE_TCB                 no&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Whether newly created tcb-style shadow files should be readable by&lt;br /&gt;
# group &amp;quot;auth&amp;quot;.&lt;br /&gt;
#&lt;br /&gt;
TCB_AUTH_GROUP          yes&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Whether useradd should create symlinks rather than directories under&lt;br /&gt;
# /etc/tcb for newly created accounts with UIDs over 1000.  See tcb(5)&lt;br /&gt;
# for information on why this may be needed.&lt;br /&gt;
#&lt;br /&gt;
TCB_SYMLINKS            no&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Delay in seconds before being allowed another attempt after a login failure&lt;br /&gt;
#&lt;br /&gt;
FAIL_DELAY		3&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Enable display of unknown usernames when login failures are recorded.&lt;br /&gt;
#&lt;br /&gt;
LOG_UNKFAIL_ENAB	no&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Enable logging of successful logins&lt;br /&gt;
#&lt;br /&gt;
LOG_OK_LOGINS		no&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Enable &amp;quot;syslog&amp;quot; logging of su activity - in addition to sulog file logging.&lt;br /&gt;
# SYSLOG_SG_ENAB does the same for newgrp and sg.&lt;br /&gt;
#&lt;br /&gt;
SYSLOG_SU_ENAB		yes&lt;br /&gt;
SYSLOG_SG_ENAB		yes&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# If defined, either full pathname of a file containing device names or&lt;br /&gt;
# a &amp;quot;:&amp;quot; delimited list of device names.  Root logins will be allowed only&lt;br /&gt;
# upon these devices.&lt;br /&gt;
#&lt;br /&gt;
CONSOLE		/etc/securetty&lt;br /&gt;
#CONSOLE	console:tty01:tty02:tty03:tty04&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# If defined, the command name to display when running &amp;quot;su -&amp;quot;.  For&lt;br /&gt;
# example, if this is defined as &amp;quot;su&amp;quot; then a &amp;quot;ps&amp;quot; will display the&lt;br /&gt;
# command is &amp;quot;-su&amp;quot;.  If not defined, then &amp;quot;ps&amp;quot; would display the&lt;br /&gt;
# name of the shell actually being run, e.g. something like &amp;quot;-sh&amp;quot;.&lt;br /&gt;
#&lt;br /&gt;
SU_NAME		su&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# If defined, file which inhibits all the usual chatter during the login&lt;br /&gt;
# sequence.  If a full pathname, then hushed mode will be enabled if the&lt;br /&gt;
# user&amp;#039;s name or shell are found in the file.  If not a full pathname, then&lt;br /&gt;
# hushed mode will be enabled if the file exists in the user&amp;#039;s home directory.&lt;br /&gt;
#&lt;br /&gt;
HUSHLOGIN_FILE	.hushlogin&lt;br /&gt;
#HUSHLOGIN_FILE	/etc/hushlogins&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# *REQUIRED*  The default PATH settings, for superuser and normal users.&lt;br /&gt;
#&lt;br /&gt;
# (they are minimal, add the rest in the shell startup files)&lt;br /&gt;
ENV_SUPATH	PATH=/usr/local/sbin:/usr/sbin:/usr/local/bin:/usr/bin&lt;br /&gt;
ENV_PATH	PATH=/usr/local/bin:/usr/bin&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Terminal permissions&lt;br /&gt;
#&lt;br /&gt;
#	TTYGROUP	Login tty will be assigned this group ownership.&lt;br /&gt;
#	TTYPERM		Login tty will be set to this permission.&lt;br /&gt;
#&lt;br /&gt;
# If you have a &amp;quot;write&amp;quot; program which is &amp;quot;setgid&amp;quot; to a special group&lt;br /&gt;
# which owns the terminals, define TTYGROUP to the group number and&lt;br /&gt;
# TTYPERM to 0620.  Otherwise leave TTYGROUP commented out and assign&lt;br /&gt;
# TTYPERM to either 622 or 600.&lt;br /&gt;
#&lt;br /&gt;
TTYGROUP	tty&lt;br /&gt;
TTYPERM		0600&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Login configuration initializations:&lt;br /&gt;
#&lt;br /&gt;
#	ERASECHAR	Terminal ERASE character (&amp;#039;\010&amp;#039; = backspace).&lt;br /&gt;
#	KILLCHAR	Terminal KILL character (&amp;#039;\025&amp;#039; = CTRL/U).&lt;br /&gt;
#	UMASK		Default &amp;quot;umask&amp;quot; value.&lt;br /&gt;
#	ULIMIT		Default &amp;quot;ulimit&amp;quot; value.&lt;br /&gt;
#&lt;br /&gt;
# The ERASECHAR and KILLCHAR are used only on System V machines.&lt;br /&gt;
# The ULIMIT is used only if the system supports it.&lt;br /&gt;
# (now it works with setrlimit too; ulimit is in 512-byte units)&lt;br /&gt;
#&lt;br /&gt;
# Prefix these values with &amp;quot;0&amp;quot; to get octal, &amp;quot;0x&amp;quot; to get hexadecimal.&lt;br /&gt;
#&lt;br /&gt;
ERASECHAR	0177&lt;br /&gt;
KILLCHAR	025&lt;br /&gt;
UMASK		022&lt;br /&gt;
#ULIMIT		2097152&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Max number of login retries if password is bad&lt;br /&gt;
#&lt;br /&gt;
LOGIN_RETRIES		5&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Max time in seconds for login&lt;br /&gt;
#&lt;br /&gt;
LOGIN_TIMEOUT		60&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Which fields may be changed by regular users using chfn - use&lt;br /&gt;
# any combination of letters &amp;quot;frwh&amp;quot; (full name, room number, work&lt;br /&gt;
# phone, home phone).  If not defined, no changes are allowed.&lt;br /&gt;
# For backward compatibility, &amp;quot;yes&amp;quot; = &amp;quot;rwh&amp;quot; and &amp;quot;no&amp;quot; = &amp;quot;frwh&amp;quot;.&lt;br /&gt;
# &lt;br /&gt;
CHFN_RESTRICT		rwh&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Should login be allowed if we can&amp;#039;t cd to the home directory?&lt;br /&gt;
# Default in no.&lt;br /&gt;
#&lt;br /&gt;
DEFAULT_HOME	yes&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# Enable setting of the umask group bits to be the same as owner bits&lt;br /&gt;
# (examples: 022 -&amp;gt; 002, 077 -&amp;gt; 007) for non-root users, if the uid is&lt;br /&gt;
# the same as gid, and username is the same as the primary group name.&lt;br /&gt;
#&lt;br /&gt;
# This also enables userdel to remove user groups if no members exist.&lt;br /&gt;
#&lt;br /&gt;
USERGROUPS_ENAB yes&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# useradd --help&lt;br /&gt;
Usage: useradd [options] LOGIN&lt;br /&gt;
       useradd -D&lt;br /&gt;
       useradd -D [options]&lt;br /&gt;
&lt;br /&gt;
Options:&lt;br /&gt;
  -b, --base-dir BASE_DIR       base directory for the home directory of the&lt;br /&gt;
                                new account&lt;br /&gt;
  -c, --comment COMMENT         GECOS field of the new account&lt;br /&gt;
  -d, --home-dir HOME_DIR       home directory of the new account&lt;br /&gt;
  -D, --defaults                print or change default useradd configuration&lt;br /&gt;
  -e, --expiredate EXPIRE_DATE  expiration date of the new account&lt;br /&gt;
  -f, --inactive INACTIVE       password inactivity period of the new account&lt;br /&gt;
  -g, --gid GROUP               name or ID of the primary group of the new&lt;br /&gt;
                                account&lt;br /&gt;
  -G, --groups GROUPS           list of supplementary groups of the new&lt;br /&gt;
                                account&lt;br /&gt;
  -h, --help                    display this help message and exit&lt;br /&gt;
  -k, --skel SKEL_DIR           use this alternative skeleton directory&lt;br /&gt;
  -K, --key KEY=VALUE           override /etc/login.defs defaults&lt;br /&gt;
  -l, --no-log-init             do not add the user to the lastlog and&lt;br /&gt;
                                faillog databases&lt;br /&gt;
  -m, --create-home             create the user&amp;#039;s home directory&lt;br /&gt;
  -M, --no-create-home          do not create the user&amp;#039;s home directory&lt;br /&gt;
  -N, --no-user-group           do not create a group with the same name as&lt;br /&gt;
                                the user&lt;br /&gt;
  -o, --non-unique              allow to create users with duplicate&lt;br /&gt;
                                (non-unique) UID&lt;br /&gt;
  -p, --password PASSWORD       encrypted password of the new account&lt;br /&gt;
  -r, --system                  create a system account&lt;br /&gt;
  -R, --root CHROOT_DIR         directory to chroot into&lt;br /&gt;
  -s, --shell SHELL             login shell of the new account&lt;br /&gt;
  -u, --uid UID                 user ID of the new account&lt;br /&gt;
  -U, --user-group              create a group with the same name as the user&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# rpm -qf $( which useradd )&lt;br /&gt;
shadow-utils-4.1.5.1-6.mga4&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# tail -n 5 /etc/passwd /etc/group /etc/shadow /etc/gshadow&lt;br /&gt;
==&amp;gt; /etc/passwd &amp;lt;==&lt;br /&gt;
gdm:x:486:477:system user for gdm:/var/lib/gdm:/bin/false&lt;br /&gt;
sshd:x:485:476:system user for openssh:/var/empty:/bin/true&lt;br /&gt;
chrony:x:484:475:system user for chrony:/var/lib/chrony:/sbin/nologin&lt;br /&gt;
nobody:x:65534:65534:Nobody:/:/bin/sh&lt;br /&gt;
rrc:x:500:500:Richard Couture:/home/rrc:/bin/bash&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/group &amp;lt;==&lt;br /&gt;
gdm:x:477:&lt;br /&gt;
sshd:x:476:&lt;br /&gt;
chrony:x:475:&lt;br /&gt;
lpadmin:x:474:&lt;br /&gt;
rrc:x:500:&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/shadow &amp;lt;==&lt;br /&gt;
lightdm:!:16335::::::&lt;br /&gt;
gdm:!:16335::::::&lt;br /&gt;
sshd:!:16335::::::&lt;br /&gt;
chrony:!:16335::::::&lt;br /&gt;
rrc:$2a$08$BlahBlahBlahjt6W:16335:0:99999:7:::&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/gshadow &amp;lt;==&lt;br /&gt;
gdm:!::&lt;br /&gt;
sshd:!::&lt;br /&gt;
chrony:!::&lt;br /&gt;
lpadmin:!::&lt;br /&gt;
rrc:!::&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# ls -al /home&lt;br /&gt;
total 28&lt;br /&gt;
drwxr-x--x  4 root adm   4096 Oct 16 12:01 ./&lt;br /&gt;
drwxr-xr-x 20 root adm   4096 Oct 14 10:24 ../&lt;br /&gt;
drwxr-x--x  2 root root 16384 Jul 29 05:50 lost+found/&lt;br /&gt;
drwxr-x--x 49 rrc  rrc   4096 Oct 16 11:37 rrc/&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# useradd DelMe1&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# tail -n 5 /etc/passwd /etc/group /etc/shadow /etc/gshadow&lt;br /&gt;
==&amp;gt; /etc/passwd &amp;lt;==&lt;br /&gt;
sshd:x:485:476:system user for openssh:/var/empty:/bin/true&lt;br /&gt;
chrony:x:484:475:system user for chrony:/var/lib/chrony:/sbin/nologin&lt;br /&gt;
nobody:x:65534:65534:Nobody:/:/bin/sh&lt;br /&gt;
rrc:x:500:500:Richard Couture:/home/rrc:/bin/bash&lt;br /&gt;
DelMe1:x:501:501::/home/DelMe1:/bin/bash&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/group &amp;lt;==&lt;br /&gt;
sshd:x:476:&lt;br /&gt;
chrony:x:475:&lt;br /&gt;
lpadmin:x:474:&lt;br /&gt;
rrc:x:500:&lt;br /&gt;
DelMe1:x:501:&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/shadow &amp;lt;==&lt;br /&gt;
gdm:!:16335::::::&lt;br /&gt;
sshd:!:16335::::::&lt;br /&gt;
chrony:!:16335::::::&lt;br /&gt;
rrc:$2a$08$BlahBlahBlah:16335:0:99999:7:::&lt;br /&gt;
DelMe1:!:16359:0:99999:7:::&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/gshadow &amp;lt;==&lt;br /&gt;
sshd:!::&lt;br /&gt;
chrony:!::&lt;br /&gt;
lpadmin:!::&lt;br /&gt;
rrc:!::&lt;br /&gt;
DelMe1:!::&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# ls -al /home&lt;br /&gt;
total 32&lt;br /&gt;
drwxr-x--x  5 root   adm     4096 Oct 16 15:40 ./&lt;br /&gt;
drwxr-xr-x 20 root   adm     4096 Oct 14 10:24 ../&lt;br /&gt;
drwxr-xr-x  4 DelMe1 DelMe1  4096 Oct 16 15:40 DelMe1/&lt;br /&gt;
drwxr-x--x  2 root   root   16384 Jul 29 05:50 lost+found/&lt;br /&gt;
drwxr-x--x 49 rrc    rrc     4096 Oct 16 15:39 rrc/&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# useradd -c &amp;quot;Del Me 2&amp;quot; -s /usr/sbin/nologin -d /mnt/DelMe2 -G webmin DelMe2&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# tail -n 5 /etc/passwd /etc/group /etc/shadow /etc/gshadow&lt;br /&gt;
==&amp;gt; /etc/passwd &amp;lt;==&lt;br /&gt;
chrony:x:484:475:system user for chrony:/var/lib/chrony:/sbin/nologin&lt;br /&gt;
nobody:x:65534:65534:Nobody:/:/bin/sh&lt;br /&gt;
rrc:x:500:500:Richard Couture:/home/rrc:/bin/bash&lt;br /&gt;
DelMe1:x:501:501::/home/DelMe1:/bin/bash&lt;br /&gt;
DelMe2:x:502:502:Del Me 2:/mnt/DelMe2:/usr/sbin/nologin&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/group &amp;lt;==&lt;br /&gt;
chrony:x:475:&lt;br /&gt;
lpadmin:x:474:&lt;br /&gt;
rrc:x:500:&lt;br /&gt;
DelMe1:x:501:&lt;br /&gt;
DelMe2:x:502:&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/shadow &amp;lt;==&lt;br /&gt;
sshd:!:16335::::::&lt;br /&gt;
chrony:!:16335::::::&lt;br /&gt;
rrc:$2a$08$BlahBlahBlah:16335:0:99999:7:::&lt;br /&gt;
DelMe1:!:16359:0:99999:7:::&lt;br /&gt;
DelMe2:!:16359:0:99999:7:::&lt;br /&gt;
&lt;br /&gt;
==&amp;gt; /etc/gshadow &amp;lt;==&lt;br /&gt;
chrony:!::&lt;br /&gt;
lpadmin:!::&lt;br /&gt;
rrc:!::&lt;br /&gt;
DelMe1:!::&lt;br /&gt;
DelMe2:!::&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# ls -al /mnt&lt;br /&gt;
total 12&lt;br /&gt;
drwxr-x---  3 root   adm    4096 Oct 16 15:44 ./&lt;br /&gt;
drwxr-xr-x 20 root   adm    4096 Oct 14 10:24 ../&lt;br /&gt;
drwxr-xr-x  4 DelMe2 DelMe2 4096 Oct 16 15:44 DelMe2/&lt;br /&gt;
&lt;br /&gt;
[root@Llawyr ~]# grep webmin /etc/group&lt;br /&gt;
webmin:x:417:rrc,DelMe2&lt;br /&gt;
&lt;br /&gt;
EXIT VALUES&lt;br /&gt;
       The useradd command exits with the following values:&lt;br /&gt;
&lt;br /&gt;
       0&lt;br /&gt;
           success&lt;br /&gt;
&lt;br /&gt;
       1&lt;br /&gt;
           can&amp;#039;t update password file&lt;br /&gt;
&lt;br /&gt;
       2&lt;br /&gt;
           invalid command syntax&lt;br /&gt;
&lt;br /&gt;
       3&lt;br /&gt;
           invalid argument to option&lt;br /&gt;
&lt;br /&gt;
       4&lt;br /&gt;
           UID already in use (and no -o)&lt;br /&gt;
&lt;br /&gt;
       6&lt;br /&gt;
           specified group doesn&amp;#039;t exist&lt;br /&gt;
&lt;br /&gt;
       9&lt;br /&gt;
           username already in use&lt;br /&gt;
&lt;br /&gt;
       10&lt;br /&gt;
           can&amp;#039;t update group file&lt;br /&gt;
&lt;br /&gt;
       12&lt;br /&gt;
           can&amp;#039;t create home directory&lt;br /&gt;
&lt;br /&gt;
       14&lt;br /&gt;
           can&amp;#039;t update SELinux user mapping&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comandos de la terminal]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>