Why escalate to Root user? and what does this solve?.
It prevents the standard pi user from continually having to enter the sudo command when doing root tasks like updating upgrading and other administrative tasks.
This is short and sweet and takes one command. To escalate to root user and stay as root user use the following command:
sudo -i
To leave sudo user and return to pi user you can type the following:
exit
0 Comments