解压缩tar.gz文件


83

通过使用wget命令行,我得到了一个tar.gz文件。我将其下载到root @ raspberrypi。有什么方法可以将其解压缩到/ usr / src文件夹中?

Answers:


146

-Ctar的使用选项:

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

然后,tar的内容应位于:

/usr/src/<yourfile>

12
-z:通过gzip过滤归档文件•-x:从归档文件中提取文件•-v:详细列出已处理的文件•-f:使用归档文件或设备F(默认为“-”,表示stdin / stdout)•请参见linuxcommand。 org / man_pages / tar1.html
Dane Rossenrode'5


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.