Answers for "how to grant all privileges to user from root in ubuntu"

1

grant superuser permission to sudo user ubuntu

adduser sudo_user_name
//grant privileges
visudo
under line 
root ALL=(ALL:ALL) ALL 
add this line
sudo_user_name ALL=(ALL:ALL) ALL
sudo apt-get update
Posted by: Guest on March-30-2021
0

grant all the permission to the user ubuntu

The simplest way is to use chown:

sudo chown -R testuser:testuser /var/www/test/public_html
Posted by: Guest on March-30-2021

Code answers related to "how to grant all privileges to user from root in ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language