Libation/Source/LibationAvalonia
2022-07-24 16:33:19 -06:00
..
Assets Refactor 2022-07-23 20:54:02 -06:00
Controls Refactor 2022-07-23 20:54:02 -06:00
Dialogs Linux compat 2022-07-24 14:46:27 -06:00
Properties/PublishProfiles Add Avalonia setup 2022-07-24 13:04:19 -06:00
ViewModels Refactor 2022-07-23 20:54:02 -06:00
Views Linux compat 2022-07-24 14:46:27 -06:00
App.axaml Refactor 2022-07-23 20:54:02 -06:00
App.axaml.cs Linux instructions 2022-07-24 16:14:34 -06:00
AppBasic.axaml Add Avalonia setup 2022-07-24 13:04:19 -06:00
AppBasic.axaml.cs Add Avalonia setup 2022-07-24 13:04:19 -06:00
AvaloniaUtils.cs Refactor 2022-07-23 20:54:02 -06:00
FormSaveExtension.cs Add Avalonia setup 2022-07-24 13:04:19 -06:00
libation.ico Libation Runs on Linux! 2022-07-23 18:07:04 -06:00
LibationAvalonia.csproj Linux compat 2022-07-24 14:46:27 -06:00
LogMe.cs Refactor 2022-07-23 20:54:02 -06:00
MessageBox.cs Linux compatability 2022-07-24 14:18:26 -06:00
ObjectComparer[T].cs Libation Runs on Linux! 2022-07-23 18:07:04 -06:00
Program.cs Add Avalonia setup 2022-07-24 13:04:19 -06:00
README.md Update README.md 2022-07-24 16:33:19 -06:00
ViewLocator.cs Refactor 2022-07-23 20:54:02 -06:00

Run Libation on Ubuntu

This walkthrough should get you up and running with Libation on your Ubuntu machine.

Some limitations of the linux release are:

  • Cannot customize how illegial filename characters are replaced.
  • The Auto-update function is unavailable
  • The "Hangover" app for debugging is not yet available.

Dependencies

Dotnet Runtime

You must install the dotnet 6.0 runtime on your machine.

First, add the Microsoft package signing key to your list of trusted keys and add the package repository.

Ubuntu 22.04
wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
Ubuntu 21.10
wget https://packages.microsoft.com/config/ubuntu/21.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
Ubuntu 20.04
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb

For other distributions, see Microsoft's instructions for installing .NET on Linux.

Then install the dotnet 6.0 runtime

sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y dotnet-runtime-6.0

FFMpeg (Optional)

If you want to convert your audiobooks to mp3, install FFMpeg using the following command:

sudo apt-get install -y ffmpeg

Install Libation

  1. Download and extract the most recent linux-64 build.
  2. Run Libation, either from the terminal or by double-clicking the Libation file in your desktop environment.
  3. Follow the prompts to setup your installation.
  4. Report bugs to https://github.com/rmcrackan/Libation/issues