Login to VM using an account with sudo permission.
Add the new user with the username "new-user".
sudo useradd -c 'New User' -m -G sudo new-user
-m
creates the home folder and -G sudo
adds them to the sudo user group.
Switch to the newly created account .