NewbieH4x
New member
- Apr 9, 2020
- 12
- 6
- 3
I agree but as an IT worker if anyone's gonna need a VPS to do some work they're gonna firstly install a bunch of packages or dependencies for the work they're gonna do so they would need root privileges for that.is there any way to create user for who need it instead given root?
The best way IMO is give each user their own account with their username by running following commands as root user:
1) Create user: adduser username
2) Provide sudo privileges: usermod -aG sudo username
3) ssh using: [email protected]
Now no need to share root password. User will be able to do things on their own and it's easier to track who did what.
These details should be shared by PM.