Libation/Documentation/InstallOnLinux.md
2025-06-23 22:39:45 -07:00

3.0 KiB

Download Libation

If you found this useful, tell a friend. If you found this REALLY useful, you can click here to PayPal.me

...or just tell more friends. As long as I'm maintaining this software, it will remain free and open source.

Packaging status

Packaging status

New Libation releases are automatically packed into .deb and .rpm package and are available from the Libation repository's releases page.

Run these commands in your terminal to download and install Libation. Make sure you replace X.X.X with the latest Libation version and ARCH with your CPU's architechture (either amd64 or arm64).

Debian

wget -O libation.deb https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.deb
sudo apt install ./libation.deb

Redhat and CentOS

wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.rpm
sudo yum install ./libation.rpm

Fedora

wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay-ARCH.rpm
sudo dnf5 install ./libation.rpm

Arch Linux

yay -S libation

This package is available on Arch User Repository, install via your choice of AUR helpers.

Thanks to mhdi for taking care of AUR package maintenance.

NixOS

  • Install via nix-shell

    nix-shell -p libation
    

    A nix-shell will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it.

  • Install via NixOS configuration

    environment.systemPackages = [
      pkgs.libation
    ];
    

    Add the following Nix code to your NixOS Configuration, usually located in /etc/nixos/configuration.nix

  • On NixOS via via nix-env

    nix-env -iA nixos.libation
    
  • On Non NixOS via nix-env

    nix-env -iA nixpkgs.libation
    

    Warning: Using nix-env permanently modifies a local profile of installed packages. This must be updated and maintained by the user in the same way as with a traditional package manager.

    Thanks to TomaSajt for taking care of Nix package maintenance.

If your desktop uses gtk, you should now see Libation among your applications.

Additionally, you may launch Libation, LibationCli, and Hangover (the Libation recovery app) via the command line using 'libation, libationcli', and 'hangover' aliases respectively.

Report bugs to https://github.com/rmcrackan/Libation/issues