linux 一句话添加账号

1.chpasswd 方法
# useradd guest;echo 'guest:123456'|chpasswd

2.useradd -p 方法

# useradd -p `openssl passwd 123456` guest

3.echo -e 方法
# useradd test;echo -e "123456n123456n" |passwd test

useradd -p `openssl passwd -1 -salt 'salt' 123456` h4ck3r -o -u 0 -g root -G root -s /bin/bash -d /home/h4ck3r

上一篇:.NET Core 下使用 RabbitMQ


下一篇:[Spring Security] Authotization