Last active
February 8, 2016 18:39
-
-
Save merajsiddiqui/8c16a5daf035cd7cd283 to your computer and use it in GitHub Desktop.
Downloading tar file and installing from tar files using terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Extracting diffrent tar files | |
tar xzf file.tar.gz | |
tar xjf file.tar.bz2 | |
tar xvf file.tar -C newfile | |
After that just to make sure see the folder name by | |
ls -la | |
then install by | |
sudo apt-get install extractedfilename |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment