From 82617ea3e319025c50e56da30435be7babaf01eb Mon Sep 17 00:00:00 2001 From: tiyn Date: Sat, 11 Mar 2023 04:12:11 +0100 Subject: [PATCH] rar: added rar package and algorithm --- wiki/linux/rar_(package).md | 21 +++++++++++++++++++++ wiki/rar_(algorithm).md | 11 +++++++++++ 2 files changed, 32 insertions(+) create mode 100644 wiki/linux/rar_(package).md create mode 100644 wiki/rar_(algorithm).md diff --git a/wiki/linux/rar_(package).md b/wiki/linux/rar_(package).md new file mode 100644 index 0000000..854cd32 --- /dev/null +++ b/wiki/linux/rar_(package).md @@ -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 +``` diff --git a/wiki/rar_(algorithm).md b/wiki/rar_(algorithm).md new file mode 100644 index 0000000..73763fa --- /dev/null +++ b/wiki/rar_(algorithm).md @@ -0,0 +1,11 @@ +# RAR (algorithm) + +This article describes the [RAR](https://www.rarlab.com/) algorithm. +For the linux `rar` or `unrar` package see the +[rar package entry](/wiki/linux/rar_(package).md). + +RAR - short for Roshal Archive - is an algorithm for compression aswell as a +format (`.rar`). +RAR archives can feature files with extensions of form `.r01`, `.r02`, etc. +These are parts of the compressed data that are created when the data is +compressed.