diff --git a/pages/02.linux/05.kopia/default.en.md b/pages/02.linux/05.kopia/default.en.md new file mode 100644 index 0000000..8f83c6c --- /dev/null +++ b/pages/02.linux/05.kopia/default.en.md @@ -0,0 +1,42 @@ +--- +title: Kopia +--- + +## Installation +### Debian +`curl -s https://kopia.io/signing-key | sudo apt-key add -` +`echo "deb http://packages.kopia.io/apt/ stable main" | sudo tee /etc/apt/sources.list.d/kopia.list` +`sudo apt update` +`sudo apt install kopia` + +## Connect Repository +To create a new repo, replace "connect" with "create" +### B2 +``` +# kopia repository connect b2 \ + --bucket=(bucket name) \ + --key-id=(api key id) \ + --key=(api key) +``` + +> [Official Documentation](https://kopia.io/docs/reference/command-line/common/repository-connect-b2/) +{.is-info} + +## Policy +Get global policy +`# kopia policy get --global` + +Change global retention +Options are `latest, hourly, daily, weekly, monthly, annual` +`# kopia policy set --keep-(option) (number)` + +Change compression +`# kopiy policy set --compression zstd-best-compression --global` + +## Snapshots +`# kopia snapshot create (path)` + +`# kopia snapshot list (path)` + +> [Check the "Getting Started" Page for more options](https://kopia.io/docs/getting-started/) +{.is-info}