`
Zhongwei_leg
  • 浏览: 546258 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

解压 tar, tar.bz2 和 tar.gz 文件

阅读更多
  1. Type at the command prompt
    tar xvzf file-1.0.tar.gz - for uncompress a gzip tar file (.tgz or .tar.gz)
    tar xvjf file-1.0.tar.bz2 - for uncompress a bzip2 tar file (.tbz or .tar.bz2)
    tar xvf file-1.0.tar - for uncompressed tar file (.tar)
    • x = eXtract, this indicated an extraction ( c = create to create )
    • v = verbose (optional) the files with relative locations will be displayed.
    • z = gzip-ped; j = bzip2-zipped
    • f = from/to file ... (what is next after the f is the archive file)
  2. The files will be extracted in the current folder (most of the times in a folder with the name 'file-1.0').
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics