Help Installing a Game

You need to make it executable using the chmod command, and then run it with superuser permissions:

chmod +x example.run
sudo ./example.run
 
Alright, but would I need to change any of the script, like inserting my username in certain places? Apologies, I've never had to install anything this way before, and 'tis completely foreign to me.
 
Alright, but would I need to change any of the script, like inserting my username in certain places? Apologies, I've never had to install anything this way before, and 'tis completely foreign to me.

Shouldn't.

You will be prompted at the Terminal for your system password when you run the sudo command.
 
You need to make it executable using the chmod command, and then run it with superuser permissions:

chmod +x example.run
sudo ./example.run

I did this after downloading the file as a .txt, renaming it to .sh, and making it executable. The output was as follows
Code:
devonc@myLaptop:~/Desktop$ sudo ./keye2-1.2-linux-x86.sh
./keye2-1.2-linux-x86.sh: 2: ./keye2-1.2-linux-x86.sh: Syntax error: "(" unexpected
devonc@myLaptop:~/Desktop$
 
Why did you rename it to .sh?

The extension in the download link in your first post is ".run"
 
Back
Top Bottom