From f08cf72ae5b6bf0f59ae188883ed139016dbbfd5 Mon Sep 17 00:00:00 2001 From: Sophia Behling <104586897+sophia-behling@users.noreply.github.com> Date: Thu, 11 Apr 2024 18:10:24 +0200 Subject: [PATCH] par2: add page (#12633) --- pages/common/par2.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/par2.md diff --git a/pages/common/par2.md b/pages/common/par2.md new file mode 100644 index 000000000..0535c782a --- /dev/null +++ b/pages/common/par2.md @@ -0,0 +1,20 @@ +# par2 + +> File verification and repair using PAR 2.0 compatible parity archives (.par2 files). +> More information: . + +- Create a parity archive with a set percentage level of redundancy: + +`par2 create -r{{1..100}} -- {{path/to/file}}` + +- Create a parity archive with a chosen number of volume files (in addition to the index file): + +`par2 create -n{{1..32768}} -- {{path/to/file}}` + +- Verify a file with a parity archive: + +`par2 verify -- {{path/to/file.par2}}` + +- Repair a file with a parity archive: + +`par2 repair -- {{path/to/file.par2}}`