=====No Sound=====

1. Install one of these OSS emulators

a) If using PulseAudio you need padsp package and run the game with "padsp" command.
b) If using ALSA you need alsa-oss package, load the snd-seq-oss, snd-pcm-oss and snd-mixer-oss modules and run the game with "aoss -32" command.
c) Install osspd package and enable/start it's service. (Most recommended)

In most Linux distributions or even Debian-based ones rely on Systemd for managing the services via systemctl. To enable and start osspd type these commands:
|=============================|
| sudo systemctl enable osspd |
| sudo systemctl start osspd  |
|=============================|

2. Replace "AudioDevice=ALAudio.ALAudioSubsystem" with "AudioDevice=Audio.GenericAudioSubsystem" in UnrealTournament.ini located in ~/.loki/ut/System.

The Goodies folder contains some additional stuff that are optional.

=====The Game Runs Too Fast=====
Due to the way the game has been ported, the game may run too fast due to the CPUs above Pentium 4.
As a minor fix, i've created the "ut-fps" script. If this issue occurs, use that script instead.

Another alternative is the use of CPU frequency management such as cpufrequtils or cpupower

You may also try loading modules for additional CPU frequency profiles with "modprobe <name of .ko.gz file>" as root/superuser/sudo.
You can list available ones with "ls /usr/lib/modules/$(uname -r)/kernel/drivers/cpufreq/" and once loaded, run the "ut" script.

CPUPower can make use of these profiles, then again the kernel or the game might do that for you.

=====Game looks ugly for me=====
This may look ugly due to the fact the port uses SDLGL by default, it's possible to change it into OpenGL.

Open UnrealTournament.ini located in ~/.loki/ut/System and replace:

|==================================================|
| GameRenderDevice=SDLGLDrv.SDLGLRenderDevice	   |
| WindowedRenderDevice=SDLGLDrv.SDLGLRenderDevice  |
| RenderDevice=SDLGLDrv.SDLGLRenderDevice	   |
|==================================================|

with:

|===================================================|
| GameRenderDevice=OpenGLDrv.OpenGLRenderDevice	    |
| WindowedRenderDevice=OpenGLDrv.OpenGLRenderDevice |
| RenderDevice=OpenGLDrv.OpenGLRenderDevice	    |
|===================================================|

Under [OpenGLDrv.OpenGLRenderDevice] you can change the graphics settings, same goes for [SDLGLDrv.SDLGLRenderDevice] section.

=====The Game Won't Run=====
Use the command "linux32" at the beginning.

=====Sound Quality is low=====

Edit UnrealTournament.ini located in ~/.loki/ut/System/

Depending on what AudioDevice you are using replace:

|====================|
| OutputRate=22050Hz |
| Channels=16	     |
|====================|

with

|====================|
| OutputRate=44100Hz |
| Channels=32	     |
|====================|

In either [AudioDevice=ALAudio.ALAudioSubsystem] or [AudioDevice=Audio.GenericAudioSubsystem] section.
