Quickly setting up a new user on the Raspberry Pi (Raspbian)
pi@pi:~$ sudo adduser jc Ajout de l'utilisateur « jc » ... Ajout du nouveau groupe « jc » (1004) ... Ajout du nouvel utilisateur « jc » (1001) avec le groupe « jc » ... Création du répertoire personnel « /home/jc »... Copie des fichiers depuis « /etc/skel »... Entrez le nouveau mot de passe UNIX : Retapez le nouveau mot de passe UNIX : passwd : le mot de passe a été mis à jour avec succès
We then need to make sure this new user has access to SSH and sudo.
For SSH, nothing is required, as this is configured by default in /etc/ssh/sshd_config
by this (I think)
UsePAM yes
For sudo, the easiest way is to add the newly created user to the sudo group
pi@pi:~$ sudo usermod -aG sudo jc