Add a new user with a home directory and sudo access:
useradd clifton --shell /bin/bash
mkdir /home/clifton/
chown clifton:clifton /home/clifton
usermod -aG sudo clifton
passwd cliftonSwitch to that user:
su - cliftonAdd a new user with a home directory and sudo access:
useradd clifton --shell /bin/bash
mkdir /home/clifton/
chown clifton:clifton /home/clifton
usermod -aG sudo clifton
passwd cliftonSwitch to that user:
su - clifton