正解:B,E
The passwd command in Linux is used to change the password of a user account. A normal user can run passwd to change their own password, and a system administrator (the superuser) can use passwd to change another user's password, or define how that account's password can be used or changed1. The passwd command can also be used to lock or unlock a user account. Locking a user account means disabling the user's ability to log in to the system, while unlocking a user account means restoring the user's ability to log in. To lock a user account, the passwd command can be used with the -l option, followed by the username. To unlock a user account, the passwd command can be used with the -u option, followed by the username12. The passwd command cannot be used to change a user's username, create a new user account, or create a new user group. These tasks require different commands, such as usermod, useradd, or groupadd345. Reference: 1: Linux Passwd Command Help and Examples 2: Passwd command in Linux: 8 Practical Examples 3: usermod(8) - Linux man page 4: useradd(8) - Linux man page 5: groupadd(8) - Linux man page