102k views
4 votes
In Linux, when logged in as a normal user with root privileges, which command must precede the apt-get command in the command line in order to install a program?

1 Answer

2 votes

Answer:

"sudo" is the command to get super user or root privileges in linux.

Step-by-step explanation:

in order to install package with root privilege in linux, the command would be

sudo apt-get install <package name>

User Antoine Auffray
by
7.1k points