0

I have already download Firefox for Lubuntu a (Firefox.tar.bz2 file) and I have extracted the file after downloading. I have lot of files in that folder. from there, which file do I need to select for installation? can you please help me with the installation steps

I have no idea about Linux please help in detail

Jacob Vlijm
  • 85,475

1 Answers1

1

How you compile a program from a source

  1. open a console
  2. use the command cd to navigate to the correct folder. If there is a README file with installation instructions, use that instead.
  3. extract the files with one of the commands

    • If it's tar.gz use tar xvzf PACKAGENAME.tar.gz
    • if it's a tar.bz2 use tar xvjf PACKAGENAME.tar.bz2
  4. ./configure

  5. make
  6. sudo make install

This is taken from this source.