6 lines
241 B
Plaintext
6 lines
241 B
Plaintext
|
# Create user 'rocky' with password 'rockylinux' and added in group 'wheel'
|
||
|
user --name=rocky --groups=wheel --homedir=/home/rocky --plaintext --password=rockylinux --uid=1000 --gid=1000
|
||
|
|
||
|
# Lock the root user account
|
||
|
user --name=root --lock
|