0

I am new to Linux, I know that to install any package or software we have to do this steps but I would to know in detail about it like how it works and what are all the parameter are there with these commands. Thanks in advance:)

1 Answers1

0

Usually to build and install an application from the source code, it's ./configure followed by make, followed by sudo make install.

If you just want to install an application, let's say git (for example), use sudo apt-get install git or sudo yum install git... depends on what your distribution's package manager is.

Gillespie
  • 5,780
  • 3
  • 32
  • 54