linux - Uncompress tar.gz file -
with usage of wget command line got tar.gz file. downloaded in root@raspberrypi. there way uncompress in /usr/src folder?
use -c option of tar:
tar zxvf <yourfile>.tar.gz -c /usr/src/ and then, content of tar should in:
/usr/src/<yourfile>
Comments
Post a Comment