CORRECT TEXT Create a user named alex, and the user id should be 1234, and the password should be alex111

CORRECT TEXT
Create a user named alex, and the user id should be 1234, and the password should be alex111.

CORRECT TEXT
Create a user named alex, and the user id should be 1234, and the password should be alex111.

Answer: A

Explanation:
# useradd -u 1234 alex
# passwd alex
alex111
alex111

OR
echo alex111|passwd -stdin alex



Leave a Reply 2

Your email address will not be published. Required fields are marked *


steven kunjachan

steven kunjachan

useradd -u 1234 -P alex111 alex

jjzzcc

jjzzcc

echo alex111 | passwd –stdin alex