-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ubuntu 22.04 installation step [DOC] #17
Comments
There isn't any real installation process to speak of; just extract the executable somewhere and run it. I'll write some documentation on the exact setup process later today. |
Greetings, I am also having issues when trying to extract and install the file. My steps are as follows
I keep getting the error in the image above "ARRCON: command not found". I have even tried appending the file extension .sh to the file and still no luck. I have tried running in SUDO and editing the file permissions using |
@muhubi You have to type the path to the file when it isn't on your PATH. In your case, that would be The file also needs execution perms for the current user, if you need to fix that you can use |
Thank you, I did not use the |
Here's a shell script you can use to upgrade versions in the future without having to download & extract it on a separate system: #!/bin/sh
set -e
if [ $# = 0 ]; then
echo -n "Version number to upgrade to: "
read version
else
version=$1
fi
wget "https://github.com/radj307/ARRCON/releases/download/$version/ARRCON-$version-Linux.zip"
unzip -o ARRCON-$version-Linux.zip
rm ARRCON-$version-Linux.zip
echo "ARRCON was upgraded to v$version"
It requires sudo apt-get update && sudo apt-get install -y wget unzip If you name it You can also run it without specifying the version number & it'll prompt you for it. |
@radj307 expansion upon your script: Here's an install/update script for whatever the latest version currently released to github, (rather than prompting):
Toss it in a cron job, and it should keep the system updated to the latest ARRCON. 👍 |
# Documentation Request
a guide on how to install ARRCON on Ubuntu 22.04 and run it with palworld game server
The text was updated successfully, but these errors were encountered: