Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过使用 wget 命令行,我得到了一个 tar.gz 文件。我在 root@raspberrypi 中下载了它。有什么办法可以在 /usr/src 文件夹中解压它?
使用-Ctar 选项:
-C
tar zxvf <yourfile>.tar.gz -C /usr/src/
然后,焦油的内容应该在:
/usr/src/<yourfile>
尝试这个:
tar -zxvf file.tar.gz
gunzip <filename>
然后
tar -xvf <tar-file-name>