xvzf command not found
In fedora 20 machine to uncompress the tar file i used xvzf utorrent-server-3.0-25053.tar.gz command it shows xvzf not found please help
In fedora 20 machine to uncompress the tar file i used xvzf utorrent-server-3.0-25053.tar.gz command it shows xvzf not found please help
You probably want tar xvf "archive name" The command you are trying does not exist
...to uncompress the tar file i used xvzf utorrent-server-3.0-25053.tar.gz command it shows xvzf not found...
xvzf are options for the tar
command which is the correct one in order to uncompress any tar file. If the tar file is also compressed with the .gz
extension(gzip) then you will need the option z
to uncompress it correctly. What these options mean ?
x = uncompress - extract.
v = be verbose - show what you are doing.
z = use the .gz(gzip) filtering while uncompress the file.
f = use this file - the file that is following the command.
The correct command is
tar xvzf <archivefile.tar.gz>
Asked: 2014-04-28 14:13:51 -0600
Seen: 4,446 times
Last updated: Apr 28 '14