ringa_lee2017-04-17 11:09:35
If installed into the $PATH of the system (you can enter commands directly on the command line in the future), you generally need sudo to elevate yourself to root privileges.
If you install it in the current folder (you will need ./command in the future), sudo is not needed
PHPz2017-04-17 11:09:35
Whether you need to use sudo depends on which directory you install to. For example, if you install to your home directory, of course you don’t need sudo. If you install to a directory without permissions, you need to use sudo to elevate the directory.
高洛峰2017-04-17 11:09:35
sudo install: Increase the permissions of the current user to root and then run install
install: Run install
巴扎黑2017-04-17 11:09:35
Sudo refers to executing subsequent commands with super user privileges.