FreeBSD account settings:
Create User:
To change current user password: passwd
To change other users password: passwd tom
To delete user with home dir: pw userdel tom -r
Add user: sudo adduser
Set up sudo:
pkg install sudo nano
nano /usr/local/etc/sudoers
Now under the line:
root ALL=(ALL) ALL
Add the next line:
tom ALL=(ALL) ALL
Save then logout or restart.
---------------------------------------------------------
Sources:
cyberciti.biz link 1
cyberciti.biz link 2
digital ocean
OS Radar
Date: February 13th, 2021
Back