Login as root is a very bad practice. Thus, it’s good to implement sudo in Linux system. You can add user to sudo list, so the user in the sudoer list will be able to perform task in different privilege.
sudo is a program in the Unix / Linux that allow a user to execute command with the security privileges of another user (usually it’s superuser or root)
To add a user to sudoer list in linux, follow the steps below:-
Advertisements
- Use the command below to edit the sudoer list
visudo
- Go thru the sudoer list and look for this line:-
root ALL=(ALL) ALL
- To add user ‘techie’ in the sudoer list, i need to add a line below root.
techie ALL=(ALL) ALL
- So the final view will be
root ALL=(ALL) ALL techie ALL=(ALL) ALL
Related posts:
CentOS: install yum fastest mirror plugin for faster connection update
How to install LAMP (Apache, PHP and MySQL in Linux) using Yum
How to block all file access except one using .htaccess
Free Project Management software for Mac OS X - GanttProject
How to avoid duplicate content using .htaccess
How to split compressed file into smaller files in Linux / Mac
How to setup mysqldump without password in cronjob
Password protect directory with .htaccess and .htpasswd
Share this with your friends:-
You can set no password when sudo to other user.
techie ALL=(ALL) NOPASSWD: ALL