Skip to content

Installation Arch Linux

Chase Chen edited this page Feb 24, 2026 · 1 revision

Arch Linux users usually prefer the latest packages and high-performance configurations. Since you are using a pre-compiled binary, the focus is on providing the necessary shared libraries.

1. Install Dependencies

The core functionality of Unsealer (specifically the QR code scanning) depends on the zbar library. Use pacman to install it:

sudo pacman -S zbar --needed

2. Global Installation

To run Unsealer from any directory, move the binary to /usr/local/bin and rename it for convenience:

sudo mv ~/Downloads/unsealer-linux-x64 /usr/local/bin/unsealer
sudo chmod +x /usr/local/bin/unsealer

3. Verification

Check if the system correctly identifies the path and dependencies:

which unsealer
unsealer --help

Note for CachyOS users: The binary works perfectly with the x86-64-v3/v4 optimized environment.

Clone this wiki locally