1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-11-07 05:31:17 +01:00

rar: added rar package and algorithm

This commit is contained in:
2023-03-11 04:12:11 +01:00
parent f0904166d2
commit 82617ea3e3
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# RAR (package)
RAR is a package available for many Linux distributions that handles `.rar`
archives of the [RAR algorithm](/wiki/rar_(algorithm).md).
## Setup
On most distributions the functionalities for creating a `.rar` archive is
bundled in the `rar` package.
For extraction a separate package is used called `unrar`.
## Usage
### Extracting a `.rar` archive
A `.rar` archive can be extracted using the `unrar` package with the following
command.
```sh
unrar e <path to .rar file>
```