zoukankan      html  css  js  c++  java
  • Ubuntu 14 如何解压 .zip、.rar 文件?

    .zip 和 .rar 是Windows下常用的压缩文件,在Ubuntu中如何解压?

    解压.zip文件

    Ubuntu中貌似已经安装了unzip软件,解压命令如下:

    unzip  ./FileName.zip

    如果没安装unzip的话,可以通过如下命令安装:

    sudo apt-get install unzip

    解压.rar文件】 

    #安装unrar软件#

    sudo apt-get install unrar

    #卸载unrar软件#

    sudo apt-get remove unrar

    #解决.rar文件#

    unrar x ./FileName.rar

    $unrar --help

    用法: unrar <command> -<switch 1> -<switch N> <archive> <files...>
            <@listfiles...> <path_to_extract>

    <命令>
      e             解压文件到当前目录
      l[t,b]        列出压缩文档信息[technical, bare]
      p             打印文件到标准输出
      t             测试压缩我俄当
      v[t,b]       列出压缩文档的详细信息[technical,bare]
      x             解压文件到完整路径 

    所以,常用unrar命令为

    unrar x ./FileName.rar

  • 相关阅读:
    or具体点vc
    异常 中断 实现
    int 0x80 系统调用实现
    方便查看 linux/kernel/sched.c
    第五周课堂笔记1th
    第四周课堂笔记4th
    第四周课堂笔记3th
    第四周课堂笔记2th
    第四周课堂笔记1th
    第三周课堂笔记4thand5th
  • 原文地址:https://www.cnblogs.com/52php/p/5678032.html
Copyright © 2011-2022 走看看