美文网首页
linux-解压rar文件

linux-解压rar文件

作者: jeffleefree | 来源:发表于2016-04-14 20:01 被阅读90次

1

我们经常在windows下面见到rar文件,而在linux下面rar文件怎么办呢?
我们喜欢的ark软件无法解压rar文件,出现了下面的问题:


1

我们应该使用linux下面的rar软件来解压,用rarlinux,可以在网上下载到rpm包,
然后rpm -ivh xxx.rpm就可以安装好了,
加压我们要用rar,解压我们用unrar,

e Extract files without archived paths

l[t[a],b] List archive contents [technical[all], bare]

p Print file to stdout

t Test archive files

v[t[a],b] Verbosely list archive contents [technical[all],bare]

x Extract files with full path

<Switches>

  •         Stop switches scanning                                                                                    
    

@[+] Disable [enable] file lists

ad Append archive name to destination path

ag[format] Generate archive name using the current date

ai Ignore file attributes

ap<path> Set path inside archive

c- Disable comments show

cfg- Disable read configuration

cl Convert names to lower case

cu Convert names to upper case

dh Open shared files

ep Exclude paths from names

ep3 Expand paths to full including the drive letter

f Freshen files

id[c,d,p,q] Disable messages

ierr Send all messages to stderr

inul Disable all messages

kb Keep broken extracted files

n<file> Additionally filter included files

n@ Read additional filter masks from stdin

n@<list> Read additional filter masks from list file

o[+|-] Set the overwrite mode

or Rename files automatically

ow Save or restore file owner and group

p[password] Set password

p- Do not query password

r Recurse subdirectories

sl<size> Process files with size less than specified

sm<size> Process files with size more than specified

ta<date> Process files modified after <date> in YYYYMMDDHHMMSS format

tb<date> Process files modified before <date> in YYYYMMDDHHMMSS format

tn<time> Process files newer than <time>

to<time> Process files older than <time>

ts<m,c,a>[N] Save or restore file time (modification, creation, access)

u Update files

v List all volumes

ver[n] File version control

vp Pause before each volume

x<file> Exclude specified file

x@ Read file names to exclude from stdin

x@<list> Exclude files listed in specified list file

y Assume Yes on all queries

2

看到如此复杂的参数是不是号头大,其实我们只需要几个参数就好了,
**1.查看rar包中的内容:

unrar l *.rar

或者

unrar v *.rar

2.测试rar包是否能解压成功:

unrar t *.rar

3.解压到当前文件夹:

unrar e *.rar

4.解压到指定文件夹:

unrar x *.rar /tmp

**

相关文章

  • linux-解压rar文件

    1 我们经常在windows下面见到rar文件,而在linux下面rar文件怎么办呢?我们喜欢的ark软件无法解压...

  • CentOS 解压缩 rar 文件

    下载rarlinux 解压 进入 rar 安装 解压 rar 文件

  • iOS中解压rar文件

    iOS中基于UnrarKit解压rar文件 iOS中解压rar文件,使用UnrarKit框架解压,框架github...

  • 常用Shell脚本

    1、解压当前目录的所有.rar文件 安装 unrar 命令 解压 unrar x filename.rar

  • linux 解压 rar

    centos 下解压 rar 文件,相对麻烦,需先下载 rar 相关包: 备注:rar 安装完成时,运行解压遇到一...

  • Mac 解压 rar

    mac 解压 rar 文件 brew install unrar unrar x monkey.rar

  • unrar

    可以用unrar命令解压rar后缀的文件 unrar e test.rar 解压文件到当前目录 unrar x t...

  • unrar的使用

    可以用unrar命令解压rar后缀的文件 unrar e test.rar 解压文件到当前目录 unrar x t...

  • mac 安装RAR工具包

    原生的macOS是不带有RAR的解压工具,以及rar解压命令的,本篇是介绍通过命令行的形式去解压和压缩为RAR文件...

  • 84. unrar命令

    unrar e test.rar:解压文件到当前目录 unrar x test.rar path:解压到指定目录 ...

网友评论

      本文标题:linux-解压rar文件

      本文链接:https://www.haomeiwen.com/subject/zenglttx.html