解压缩 tar.gz 文件

通过使用 wget 命令行,我得到了一个 tar.gz 文件。我从 root@raspberrypi 下载的。有办法解压缩/usr/src 文件夹中的文件吗?

157627 次浏览

Try this:

tar -zxvf file.tar.gz
gunzip <filename>

then

tar -xvf <tar-file-name>

Use -C option of tar:

tar zxvf <yourfile>.tar.gz -C /usr/src/

and then, the content of the tar should be in:

/usr/src/<yourfile>