Linux install
Install Manaby on Linux
A single command works on any major distribution.
Quick install
Works on Arch, Manjaro, Debian, Ubuntu, Fedora, CentOS, RHEL, openSUSE and more.
curl -fsSL https://manaby.app/install.sh | bash
Or with wget:
wget -qO- https://manaby.app/install.sh | bash
What this script does
- Downloads the universal AppImage package
- Installs to
~/.local/share/manaby/ - Creates a symlink in
~/.local/bin/ - Adds a desktop entry for your application menu
- No root / sudo required
Manual installation
Prefer to do it by hand? Pick your distribution.
1. Import the GPG key
curl -fsSL https://manaby.app/repository/manaby-release-key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/manaby-archive-keyring.gpg
2. Add the repository
echo "deb [signed-by=/usr/share/keyrings/manaby-archive-keyring.gpg] https://manaby.app/repository/deb stable main" | sudo tee /etc/apt/sources.list.d/manaby.list
3. Update and install
sudo apt update && sudo apt install manaby
Verifying package authenticity
All packages in the Manaby repository are signed with the Manaby Release Key. The package manager verifies the signature on install.
curl -fsSL https://manaby.app/repository/manaby-release-key.gpg | gpg --show-keys
Available architectures
- AppImage: x86_64 (universal)
- DEB: amd64
- RPM: x86_64
Troubleshooting
Permission denied errors
Make sure you’re using sudo with the appropriate commands.
GPG key issues
If you have problems with the GPG key, refresh your package manager’s keys:
- Debian / Ubuntu:
sudo apt-key update - Fedora / RHEL:
sudo rpm --import https://manaby.app/repository/manaby-release-key.gpg