Linux does not contain rar compression and decompression software. 1. download RARforLinux: unzip
Dedicated waiting
Linux does not contain rar compression and decompression software.
1. download RAR for Linux
: Http://www.rarlab.com/rar/rarlinux-3.9.b3.tar.gz
The downloaded file is rarlinux-3.9.b3.tar.gz.
II. decompress the software package
Decompress the file to the/usr/local directory.
Tar xzvf rarlinux-3.9.b3.tar.gz? Directory =/usr/local
3. create a symbolic link
View the/usr/local/rar directory and find that there are already two programs, rar and unrar, which can be used directly without compilation. for ease of use, create two symbolic connections in/usr/bin, and you can directly use the rar and unrar commands on the terminal.
Ln-s/usr/local/rar/usr/bin/rar
Ln-s/usr/local/rar/unrar/usr/bin/unrar
If rar is executed, an error is returned:
Rar:/lib/libc. so.6: version 'glibc _ 100' not found (required by rar)
Use the rar_static version provided in/usr/local/rar. That is the static linking version, and there will be no inconsistency between glibc Library versions.
Rm-rf/usr/bin/rar
Ln-s/usr/local/rar/rar_static/usr/bin/rar