Last active
November 28, 2024 16:13
-
-
Save frafra/527b05a764e53bcead53800395a89adf to your computer and use it in GitHub Desktop.
Install RavenPro as user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# Install RavenPro as user on Linux using proot | |
# Download the installer in advance and set the correct version | |
# Do not start RavenPro from the installer | |
VERSION=1.6.5 | |
mkdir -p ravenpro | |
proot -0 -b ravenpro:/opt ./RavenPro-${VERSION}-linux-x64-installer.run | |
echo "Run this command to start RavenPro:" | |
echo "proot -b ravenpro:/opt /opt/RavenPro${VERSION%.*}/RavenPro.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment