|
本帖最后由 hbghlyj 于 2023-5-23 22:55 编辑
If you are not sure how to unpack the compressed file or its ending looks different: *.tar.gz or *.tgz: Use tar xzf *.tar.gz *.tar.bzip2 or *.tar.bz2: Use tar xjf *.tar.bzip2 *.app.dmg or *.dmg: This is a Mac disk image, and you can just double-click it. *.tar.lzma: Use tar --lzma -xf *.tar.lzma If the file ending is different, the Linux command file gives you information about the archive type. (Type file filename.ext at the command prompt.)
|
|