当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > linux操作系统下 RAR的安装和使用

Unix/Linux
linux 操作技巧收集_
linux下如何读取使用iso 镜像文件的方法
Linux平台下文件的压缩与解压参数说明
Linux下常用压缩格式的压缩与解压方法
Linux JDK,TOMCAT安装及环境设置
Linux sleep命令使用参数
Linux cat命令参数
nfs 配置的简单例子
linux kill 关闭进程命令
linux ultrasphinx Anonymous modules have no name to be referenced by
Linux oracle 9i图文安装方法一
Linux oracle 9i图文安装教程二
Linux oracle 9i图文安装教程三
Linux oracle 9i图文安装教程四
Linux oracle 9i图文安装教程五
Linux oracle 9i图文安装教程六 完结篇
linux AS3 oracle9i 安装指南
Linux 下 (RedHat 9.0) JDK,Tomcat,MySQL的安装
RedHat 9.0下Apache+PHP+MySQL服务器安装配置
Linux 下用 Python 连接 MSSql Server 2008

Unix/Linux 中的 linux操作系统下 RAR的安装和使用


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-15   浏览: 153 ::
收藏到网摘: n/a

首先下载rarlinux-3.7.1.tar.gz 下载地址 http://www.onlinedown.net/soft/3.htm 2然后解压 # tar xvfz    rarlinux-3.7.b1.tar.gz 3安装 # make install
mkdir -p /usr/local/bin
mkdir -p /usr/local/lib
cp rar unrar /usr/local/bin
cp rarfiles.lst /etc
cp default.sfx /usr/local/lib
4解压文件:

# rar x test.rar /
rar: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by rar)

5需要GLIBC_2.4。如果没有GLIBC_2.4可以

# cp ./rar/rar_static /usr/local/bin/rar

rar_static 版是 static linking 版本,不会有 glibc 程式库版本不和的问题。

再次解压:
[root@xxxx ~]# rar x test.rar / RAR 3.71   Copyright (c) 1993-2007 Alexander Roshal   20 Sep 2007
Shareware version         Type RAR -? for help
Extracting from test.rar Extracting  /test.txt                                                 OK
All OK
  6打包 rar a install.rar ./install.log
  好了!大功告成:)