Câu trả lời:
Bạn có hai lựa chọn:
cd /root/Desktop/folder
tar xf /root/Documents/file.tar.gz
hoặc là
tar xf file.tar.gz -C /root/Desktop/folder
-C
là viết tắt của?
man tar
-C, --directory DIR thay đổi thành thư mục DIR
tar -xvjf foo.tar.bz2
cho những ai đang tìm kiếm bz2 như tôi
gzip -dc archive.tar.gz | tar -xf - -C /destination
?