Linux解压rar的办法步骤有哪些呢?这里良许教程网小编就给大家介绍下Linux解压rar的办法,心愿对你有所帮忙。
网上下载rar 压缩文件的应用,在linux在咱们须要对其进行解压缩,这个时候,咱们须要装置 rar相干的文件,来进行解压缩。
- 下载
咱们进入rarlab网站,进行下载rar for linux x64
- 应用 tar 命令 解压 (*.tar 用 tar –xvf )
1 Downloads tar -xvf rarlinux-x64-5.6.0.tar.gz
- 进入文件夹make (须要 管理员权限)
1 rar cat makefile 2 ###################################################################3 # Installing RAR executables, configuration files and SFX modules #4 # to appropriate directories # 5 ###################################################################6 PREFIX=/usr/local7 install:8 mkdir -p $(PREFIX)/bin9 mkdir -p $(PREFIX)/lib10 cp rar unrar $(PREFIX)/bin11 cp rarfiles.lst /etc12 cp default.sfx $(PREFIX)/lib%
如果不进行make 须要在命令所在的文件夹执行命令,或者把文件夹退出环境变量中。
- 最初,能够应用 unrar 进行解压, 应用 rar 命令,进行压缩。
咱们 能够间接输出 unrar 查看帮忙
1 rar ./unrar2 UNRAR 5.60 freeware Copyright (c) 1993-2018 Alexander Roshal3 Usage: unrar <command> -<switch 1> -<switch N> <archive> <files...>4 <@listfiles...> <path_to_extract\>5 <Commands>6 e Extract files without archived paths7 l[t[a],b] List archive contents [technical[all], bare]8 p Print file to stdout9 t Test archive files10 v[t[a],b] Verbosely list archive contents [technical[all],bare]11 x Extract files with full path12 <Switches>13 - Stop switches scanning14 @[+] Disable [enable] file lists15 ad Append archive name to destination path16 ag[format] Generate archive name using the current date17 ai Ignore file attributes18 ap<path> Set path inside archive19 c- Disable comments show20 cfg- Disable read configuration21 cl Convert names to lower case22 cu Convert names to upper case23 dh Open shared files24 ep Exclude paths from names25 ep3 Expand paths to full including the drive letter26 f Freshen files27 id[c,d,p,q] Disable messages28 ierr Send all messages to stderr29 inul Disable all messages30 kb Keep broken extracted files31 n<file> Additionally filter included files32 n@ Read additional filter masks from stdin33 n@<list> Read additional filter masks from list file34 o[+|-] Set the overwrite mode35 ol[a] Process symbolic links as the link [absolute paths]36 or Rename files automatically3737 ow Save or restore file owner and group38 p[password] Set password39 p- Do not query password40 r Recurse subdirectories41 sc<chr>[obj] Specify the character set42 sl<size> Process files with size less than specified43 sm<size> Process files with size more than specified44 ta<date> Process files modified after <date> in YYYYMMDDHHMMSS format45 tb<date> Process files modified before <date> in YYYYMMDDHHMMSS format46 tn<time> Process files newer than <time>47 to<time> Process files older than <time>48 ts[m|c|a] Save or restore file time (modification, creation, access)49 u Update files50 v List all volumes51 ver[n] File version control52 vp Pause before each volume53 x<file> Exclude specified file54 x@ Read file names to exclude from stdin55 x@<list> Exclude files listed in specified list file56 y Assume Yes on all queries
其余解压缩命令:
1、*.tar 用 tar –xvf 解压2、*.gz 用 gzip -d或者gunzip 解压 3、*.tar.gz和*.tgz 用 tar –xzf 解压 4、*.bz2 用 bzip2 -d或者用bunzip2 解压 5、*.tar.bz2用tar –xjf 解压 6、*.Z 用 uncompress 解压 7、*.tar.Z 用tar –xZf 解压 8、*.rar 用 unrar e解压 9、*.zip 用 unzip 解压