How to install any .tar.gz file on Fedora 27 in details
How to install any .tar.gz file on Fedora 27 in details because I am a Beginner
How to install any .tar.gz file on Fedora 27 in details because I am a Beginner
The following is a blind guess since you are not providing much information
From a terminal, run the following sequence of commands:
tar zxf file.tar.gz
(extract the tarball)cd path-to-software
(change into the new directory, run ls
before to check the name)cat README
to display a readme file.Then build and compile the software (it may require additional packages like gcc
)
4.a. sudo ./configure
4.b. sudo make
4.c. sudo make install
Asked: 2017-12-01 11:54:08 -0600
Seen: 18,333 times
Last updated: Dec 01 '17
.tar.gz indicates that this is a compressed file. How to install it depends on what's in there. Please provide more information - or extract the file and look out for a
README
file. Probably you have the sources of the package, and need to compile it first.