cli-tarHow do I install a tar.gz file on a Unix system?
tar -xzvf file.tar.gz- This command will extract the contents of the tar.gz file into the current directory.
cd file- This command will move into the newly created directory.
./configure- This command will configure the installation.
make- This command will compile the source code.
make install- This command will install the software into the system.
Links:
More of Cli Tar
- How do I use the command line to create a tar file?
- How do I compress a file using gzip and tar.xz?
- How do I use the Unix tar xvf command to extract files?
- How do I use tar gzip with a password?
- How can I fix an unexpected end of file error when compressing a file with tar and gzip?
- How do I create a tar.zip file in Unix?
- How do I use gzip tar xvf to extract a file?
- How do I use the tar command line in Windows 10?
- How do I use gzip and tar in Linux?
- How do I use the tar command on Windows?
See more codes...