Discord screenshot

Download Plakar

Select a version to download binaries for your platform

Current version: v1.0.2

You are viewing an older version of Plakar. The latest version is v1.0.4.

About this Release

Plakar v1.0.2 predates the introduction of official binary packages (tarballs, deb, apk, etc.).
Installation was only supported via the Go toolchain. If you need pre-built artifacts, upgrade to a later version (e.g. v1.0.4 or newer).

Install Using Go

You need a recent Go toolchain (Go 1.23.3 or later recommended).

1go install github.com/PlakarKorp/plakar@v1.0.2

By default the binary is placed in ~/go/bin. Ensure it is on your PATH:

1export PATH="$PATH:~/go/bin"

Verify:

1plakar version
2# Expected: v1.0.2

Platform Requirements

ComponentRequirement
Go toolchain1.23.3+
Network (optional)For remote repositories (SFTP, object storage)
Build toolsOnly Go (no C toolchain needed)

If Go is missing:

1# macOS (Homebrew)
2brew install go
3
4# Debian / Ubuntu
5sudo apt-get update && sudo apt-get install -y ca-certificates golang
6
7# OpenBSD
8doas pkg_add go

What You Do NOT Get in v1.0.2

  • No official checksummed binaries
  • No package repositories (APT / RPM / APK)
  • No pre-built integration bundles
  • No automated upgrade script

If you need those, pick a later version from the version selector.

Basic Usage Recap

Create a repository:

1plakar at ~/backups create

Run a backup:

1plakar at ~/backups backup /etc

List snapshots:

1plakar at ~/backups ls

Restore:

1plakar at ~/backups restore -to /tmp/restore <snapshot-id>

Troubleshooting

SymptomFix
plakar: command not foundAdd ~/go/bin to PATH
Wrong version after installRun go clean -cache -modcache then reinstall
Slow first commandStart the agent: plakar agent

Security Note

Your repository passphrase is not recoverable. Store it safely.
If you later adopt multiple repositories or remote sync, rotate passphrases and document procedures.

Next Steps

  • Read the Quickstart for this historical version (concepts still apply).
  • Plan migration to a newer release to benefit from packaging and integrations.

This page intentionally reflects the historical state of v1.0.2 for users maintaining legacy environments.

Need help getting started?

Check our documentation for installation guides, usage examples, and more.