Files
bs-manager/docs/wiki/Linux.md
T
2024-11-22 00:57:31 +08:00

2.2 KiB

Linux Guide

Installation

Go to Releases page and go to the latest release. Download the necessary build installer for your distro (see below).

Universal (flatpak)

You are required to have flatpak installed your system. After installing that, download the .flatpak file in the releases and run the following command:

flatpak install ./bsmanager.flatpak

If you are getting errors like packages not existing, run this command so that it finds the correct packages.

sudo flatpak remote-add --if-not-exists --system flathub https://flathub.org/repo/flathub.flatpakrepo

# or

flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo

Ubuntu, Debian (deb)

Download the .deb file in the releases and run the following command:

dpkg -i ./bsmanager.deb

Arch (AUR)

Refer to bs-manager-git.

To install AUR packages, you need to install yay.

Proton Setup

Proton is needed to run the Beat Saber executable under Linux. You need to download this from either from Steam or building it from their GitHub repo.

Once Proton is installed, when you open your BSManager application for the first time, it will ask you to link the Proton Folder. The Proton Folder also verifies if the proton and files/bin/wine64 binaries exists. Once set, you should be able to launch the Beat Saber (using proton) and install mods (using files/bin/wine64). You can still change the Proton Folder in the settings page if any new version of Steam Proton is downloaded.

Troubleshooting

Permission denied on "bs-version.json"

Unhandled Exception UnhandledRejection Error: EACCES: permission denied, open '/opt/BSManager/resources/assets/jsons/bs-versions.json'

To fix this issue, the current user must have write permissions to the "bs-versions.json". To correct the permissions do command below:

chmod +002 /opt/BSManager/resources/assets/jsons/bs-versions.json

# or

chown $(whoami) /opt/BSManager/resources/assets/jsons/bs-versions.json