Hmm… when I run ./ioquake3-1.36-7.1.x86_64.run on Debian 8 I get a GUI installer not a terminal-based installer. Maybe Ubuntu 18.04 doesn’t have GTK+ 2 libraries or something installed by default anymore so it falls back to a terminal interface.
The config is saved in /home/yourusername/.q3a/baseq3/
. You can install pk3s there as well. The only reason you should have to change /usr/local/games/ioquake3/
is to update ioquake3.
Adventures in uninstalling on Linux x86_64
Copy the lines that don’t start with # into a terminal and run them. The state of installing/uninstalling ioquake3 is rather unfortunate.
This assumes ioq3 was installed using sudo and installed in /usr/local/games/ioquake3
. /root/ is the home directory for the root user (accessed using sudo).
# Fix uninstaller failing to find loki-setup uninstaller on x86_64.
# It needs a link named amd64 that points to the x86_64 directory.
sudo ln -s /root/.loki/installed/bin/Linux/x86_64 /root/.loki/installed/bin/Linux/amd64
# Fix uninstaller failing with the following error due to using dash shell instead
# of bash:
#
# /usr/local/games/ioquake3/.manifest/scripts/preun.sh: 16: /usr/local/games/ioquake3/.manifest/scripts/preun.sh: Syntax error: Bad fd number
#
# It needs to replace ">& /dev/null/" (used to silence any output in Bash)
# on line "rmdir --ignore-fail-on-non-empty demoq3 missionpack >& /dev/null"
sudo sed -i -e "s|>\& /dev/null|>/dev/null 2>\&1|" /usr/local/games/ioquake3/.manifest/scripts/preun.sh
# Run the uninstaller
sudo /usr/local/games/ioquake3/uninstall
# If it fails to uninstall then report the text output to this thread and don't run
# the commands below.
# Check if any games are installed using loki-setup, if there is then don't remove
# .loki in the next step
sudo ls -l /root/.loki/installed/*.xml
# WARNING only if the uninstaller succeeded and you don't have any other loki-setup
# games installed in /root/.loki/installed/*.xml then run this to remove left over
# files from the installer
sudo rm -r /root/.loki
Installing in home directory
You can install ioquake3 in any directory you want.
To use the installer; run ./ioquake3-1.36-7.1.x86_64.run
(no sudo) and change the install path to be in your home directory (i.e., /home/yourusername/ioquake3). You cannot change location after installing. Then run the ioquake3 linux q3a data installer to install baseq3/pak[1-8].pk3 and menu shortcuts for Q3A and Team Arena. Then to update ioquake3, extract the test build in the same directory you choose as the install path.
Alternatively you can skip the installer. The main loss is the installer will add ioquake3 to the system menu and PATH for running ioquake3
from a terminal. Extract the test build somewhere in your home directory, add baseq3/pak[0-8].pk3 (get pak[1-8].pk3 here if needed), and you’re good to go. To run it you have to open a terminal and change to where you extracted it using “cd Downloads/ioquake3” (or where ever you extracted it) and then enter ./ioquake3.x86_64
.
The config will always be saved in /home/yourusername/.q3a/baseq3/
in any case.