Configurare Raspberry Pi: Diferență între versiuni

De la YO3ITI
Sari la navigare Sari la căutare
Fără descriere a modificării
Fără descriere a modificării
Linia 1: Linia 1:
==Utilizatori==
==Utilizatori==
===Creare utilizator===
<syntaxhighlight lang="sh">
<syntaxhighlight lang="sh">
pi@raspberrypi:~ $ sudo adduser tom
pi@raspberrypi:~ $ sudo adduser tom
Linia 18: Linia 19:
Other []: none
Other []: none
Is the information correct? [Y/n] Y
Is the information correct? [Y/n] Y
</syntaxhighlight>
===Adăugare utilizator în sudoers===
<syntaxhighlight lang="sh">
pi@raspberrypi:~ $ sudo adduser tom sudo
Adding user `tom' to group `sudo' ...
Adding user tom to group sudo
Done.
</syntaxhighlight>
</syntaxhighlight>

Versiunea de la data 27 februarie 2020 21:56

Utilizatori

Creare utilizator

pi@raspberrypi:~ $ sudo adduser tom
Adding user `tom' ...
Adding new group `tom' (1001) ...
Adding new user `tom' (1001) with group `tom' ...
Creating home directory `/home/tom' ...
Copying files from `/etc/skel' ...
New password: <parola>
Retype new password: <parola din nou>
passwd: password updated successfully
Changing the user information for tom
Enter the new value, or press ENTER for the default
	Full Name []: Miron Iancu
	Room Number []: home
	Work Phone []: +40758xxxxxx
	Home Phone []: +40758xxxxxx
	Other []: none
Is the information correct? [Y/n] Y

Adăugare utilizator în sudoers

pi@raspberrypi:~ $ sudo adduser tom sudo
Adding user `tom' to group `sudo' ...
Adding user tom to group sudo
Done.