7 lines
157 B
Plaintext
7 lines
157 B
Plaintext
|
info "Creating user account"
|
||
|
|
||
|
useradd -s /bin/bash -m user
|
||
|
echo "user:user" | chpasswd
|
||
|
usermod -aG sudo user
|
||
|
echo "export DISPLAY=:0" >> /home/user/.bashrc
|