Categories: Snippets

how to use sudo command to install .tar.gz?

To install some file *.tar.gz, you basically would do:

  1. Open a console, and go to the directory where the file is
  2. Type: tar -zxvf file.tar.gz
  3. Read the file INSTALL and/or README to know if you need some dependencies.

Most of the times you only need to:

  1. type ./configure
  2. make
  3. sudo make install

Recent Posts

How To Troubleshoot Socket Errors in MySQL – Ubuntu

MySQL manages connections to the database server through the use of a socket file, a special…

5 years ago

How to remove .html, .php, etc (extension) from URL?

To remove the .html extension from your urls, you can use the following code in…

5 years ago

Ubuntu with Apache2: Installing and Configuring Your SSL Certificate

Use free/paid SSL certificates https://www.sslforfree.com Enable SSL Module Replace 'default-ssl' with the real site name…

5 years ago

Create zip archive excluding specific Files & Directories

Create archive of all files under public_html directory ignoring all files and folders including text…

5 years ago

Change ownership of the directory in ubuntu

The chown command has the following syntax: [crayon-662d87bf36289744247788/] So in your example command it is your primary…

6 years ago

failed to retrieve share list from server connection refused ubuntu 18.04

How to Save: To save in nano use "CTRL-O", then "CTRL-X". Tip: Replacing sudo nano with gksudo gedit gives you a…

6 years ago