How To Install Uncompress Package
This tutorial shows how to uncompress and install tar packages in ubuntu. Uncompress: First,open up terminal(Applications/Accessories/Terminal). Nov 29, 2006 Hello, I found my linux hasn't uncompress command. How can install this command? Go to rpm.pbone.com and find unzip and unrar and untar packages.
The first thing you need to do is extract the files from inside the tar archive to a folder. Let's copy the files to your desktop. You can extract an archive by right-clicking the archive file's icon inside your file browser and pressing the appropriate entry in the context menu. Extracting the archive should create a new folder with a similar name. Now you need to open your terminal and navigate to that directory using the following command: cd /home/yourusername/Desktop/program-1.2.3 Make sure you read a file called INSTALL, INSTALL.txt, README, or something similar if one was extracted.
You can check if such a file exists from the terminal by using the ls command. The file can be opened and read with the command: xdg-open INSTALL Where INSTALL is the name of your file. This file will contain the right steps to follow to continue the installation process. Usually, the three 'classical' steps are:./configure make sudo make install You may also need to install some dependencies if, for example, running configure prompted you with an error listing which dependencies you are missing. You can also use checkinstall instead of make install.
See here Remember that your mileage may vary. You cannot 'install' a.tar.gz file or.tar.bz2 file.tar.gz files are gzip-compressed tarballs, compressed archives like.zip files.bz2 files are compressed with bzip2. You can extract.tar.gz files using: tar xzf file.tar.gz Similarly you can extract.tar.bz2 files with tar xjf file.tar.bz2 If you would like to see the files being extracted during unpacking, add v: tar xzvf file.tar.gz Even if you have no Internet connection, you can still use Ubuntu's package management system, just download the.deb files from.
Do not forget to download dependencies too. For an easier way to install packages offline, see the question. How you compile a program from a source. open a console. use the command cd to navigate to the correct folder. If there is a README file with installation instructions, use that instead. 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./configure. make. sudo make install Download a package from the software sources or the software center.
If you install a package via the software sources and not downloading the package on your own, you will get new updates to that package and install them via the Update Manager. You could just install MYPACKAGE by typing in a terminal: sudo apt-get install MYPACKAGE or by using the software center and searching for MYPACKAGE. But if it's not there go with the source. @Alvar:./configure && make && sudo make install assumes that the package uses an autoconf style of configuring and compiling programs.
You should search for the files INSTALL, README or similar. Also, make install won't work if the prefix is set to a privileged location (which is the default). Therefore, use sudo make install or install it into a directory in the home directory using./configure -prefix=/yourprogram. Then put /yourprogram/bin in your $PATH or make symlinks to it in /bin/. – Nov 19 '11 at 10:14.
First things first It is generally not advised to download and install applications from the internet files. Most applications for Ubuntu are available through the 'Ubuntu Software Center' on your system (for example, ). Installing from the Software Center is much more secure, much easier, and will allow the app to get updates from Ubuntu. That said, how to install tar packages The best way is to download the tar.bz2 and tar.gz packages to your system first. Next is to rightclick on the file and select extract to decompress the files.
Open the location of the folder you extracted and look for the Readme file and double click to open it and follow the instruction on how to install the particular package because, there could be different instruction available for the proper installation of the file which the normal routine might not be able to forestall without some errors. It is difficult to answer specifically, as each software may have a different build process, even if they are archived as a TAR/GZ What I can say for most source codes that I know of is that you will first need to extract the tarball archive into a folder of your choice. Then most source codes rely on the AUTOCONF and MAKE programs, so you will need to use the following commands:./configure make To build your binaries, and then: make install To install it in the system.
'./configure' uses the autoconf mechanism to retrieve information on your system, and prepare the build scripts in the source file in order to build the appropriate binaries compatible with your installation. 'make' will invode the build itself, that will create the binaries out of the source code. 'make install' will then copy the binaries, documentation, configuration file, etc. Into the appropriate folders of your system so that the software is available to the users. It is a very basic explanation, the real answer is: read the documentation provided with the source code. Only there you will know exactly how to build it. You should always try to install software from repositories whether it's official, a PPA/any other unofficial repository.
That way, you'll get all stable release, security and new feature updates while you install other system updates. Another advantage is that you don't need to worry about building, dependencies and harder uninstallation (since the application won't appear in synaptic) with tar files. For example, you can install mysql by installing mysql-server package.
If you really want to use tar files, the common process is to run (make install may require sudo):./configure make make install Please note that some of the above commands may not be necessary, please refer to any readme files in the tar file or try to run./configure -help. Files with the extension tar.bz2 are what is commonly known as a compressed tarball. Other examples are.tar.gz (more common) and.tgz. You can extract this file with. Tar -xvjf file.tar.bz2 This will extract the files from the tarball into the directory you are currently in and should create a new directory there with in that the files from the tarball. Short explanation on the options:.x: extract.v: verbose: show what is being extracted.j: type of compression, in this case bzip2.f: 'next comes the filename' This is probably not enough though.
Depending on what it is it could have a complete compiled setup and you need to cd into the new directory and start an executable. It could also contain the source to a program that you need to confire, make, make install. Generally (ie. I would assume) it should contain a readme that explains what to do next.
Warning: Installing software like this will NOT install any dependencies and will complain if you try to install a tarball before you installed these dependencies. Use a website or the file itself to find out if there are dependencies and install those first. But always always always first try to find a.DEBian installation file or a link to a ppa so you can use ubuntu software center. If you are trying to install the gimp plugins you skipped parts of the installation process mentioned. Wget ftp://ftp.gtk.org/pub/babl/0.1/babl-0.1.10.tar.bz2 tar -xvf babl-0.1.10.tar.bz2 cd babl-0.1.10/./configure make sudo make install and you will also need gegl: wget ftp://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 tar -xvf gegl-0.2.0.tar.bz2 cd gegl-0.2.0/./configure make sudo make install Before downloading the files with wget visit the website and see if it has newer versions. These instructions are from the 3rd of May 2012 so they could be old;).
Installing from archives (.zip tar.gz, etc.): These archives generally contain the source of the package. Each of them generally has a different approach to install. I will be discussing a common method which will supposedly work for all of them. General requirements:.
Uncompress Zip
flex. bison or bison.
Uncompress Files Windows 10
python As these archives contains the source, your system needs the required programming languages to compile and build the source. So the general requirement packages stated above may not be sufficient for you. In that case you have to install the required packages through one of the processes #1,#2,#3 (requires internet connection). You can know about the dependencies about your software in a readme file included in the archives. Steps:. open the archives with archive manager by double clicking it, then extract it.

How To Uncompress Files
code: cd path-to-the-extracted-folder. inside the extracted folder look carefully. If you find a file named configure then./configure make sudo make install If the first code fails to execute then run this code before above codes: chmod +x configure b. If you find a file named install.sh then Code: chmod +x install.sh./install.sh or sudo./install.sh (if it needs root permission) or you can double click it and select run in terminal or simply run. N.B.: sometimes there is a file, something like yoursoftwarename.sh is found instead of install.sh. For this case, you have to replace install.sh with the correct name in the previous codes.
Epsxe crash team racing patch. Will the '.sbi' file fix the OP CODE UNK error on epsxe? [i have wasted 10+ CD-R's already ] *Q.
If you find a file named install then code: chmod +x install./install or sudo./install (if it needs root permission) or you can double click it and select run in terminal or simply run. If you find a file named make (if there is no configure file) then code: make sudo make install e. If you still can't find the required files then it may be in a special folder (generally in a folder named bin). Move to this folder with cd command with the appropriate path and then look again and follow the same process.
WikiHow's mission is to help people learn, so we really hope this article taught you what you wanted to know. Now you are helping others, just by visiting wikiHow. World Possible is a nonprofit organization focused on connecting offline learners to the world's knowledge. They work to ensure that anyone can access the best educational resources from the web anytime, anywhere, even if they do not have an internet connection. Click below to let us know you read this article and want to be a part of our mission to help others, and wikiHow will donate to World Possible on your behalf. Thanks for helping us achieve our goal of helping everyone on the planet learn how to do anything!