> V1.1.0 > Quickstart > Installation
Version v1.1.0

Beta Version

You're viewing documentation for version v1.1.0. Beta versions are subject to changes and may not represent the final stable release. Do not use in production environments.

Installation

Several installation methods are available depending on your operating system. Choose the method that best suits your environment.

For Debian-based operating systems (such as Ubuntu or Debian), the easiest way is to use our APT repository.

First, install necessary dependencies and add the repository’s GPG key:

sudo apt-get update
sudo apt-get install -y curl gnupg2
curl -fsSL https://packages.plakar.io/keys/plakar.gpg | sudo gpg --dearmor -o /usr/share/keyrings/plakar.gpg
echo "deb [signed-by=/usr/share/keyrings/plakar.gpg] https://packages.plakar.io/deb stable main" | sudo tee /etc/apt/sources.list.d/plakar.list

Then update the package list and install plakar:

sudo apt-get update
sudo apt-get install plakar

Verifying the Installation

Verify the installation by running:

plakar version

This should return the expected version number, for example ‘plakar/v1.0.6’.

Downloading Specific Versions

All release versions of plakar are available directly from GitHub on the project’s release page.

For each release, check under the “Assets” section for a list of pre-built packages. They follow the naming convention plakar_<version>_<os>_<arch>.<format>.

Installation Troubleshooting

If you encounter any issues during installation, or notice that this documentation is out of date:

  • Ensure you are following the instructions for the correct version of plakar.
  • Open an issue on the GitHub issue tracker.

Next Steps: Getting Started

Now that you have plakar installed, we recommend proceeding to the Quickstart guide to set up your first backup.

Found a bug or mistake in the documentation? Create an issue on GitHub