General Zone > The Lounge

Is there a way to make GOG purchase work in Linux (Ubunt)

<< < (2/4) > >>

-Adler-:
Download
Unreal tournament 2004 DVD
https://archive.org/details/ut-2004-dvd

Megapack
edit path to your ut2004 path "/usr/local/games/ut2004/"


--- Code: ---#!/bin/sh
URL="https://www.utzone.de/forum/downloads.php?do=file&id=1194_UT2004-Mega-Pack-Linux-+-LinuxPatch-3369.2"
FILE=ut2004megapack-linux.tar.bz2
if test -f "$FILE"; then
    echo "$FILE exists."
tar -jxvf $FILE
cd UT2004MegaPack/
sudo cp -R * /usr/local/games/ut2004/
else
    echo "$FILE does not exist."

echo "Download $FILE URL= $URL"
fi
--- End code ---

sudo apt-get install libstdc++5
sudo ln -s /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0 /path/to/your/folder/UT2004/System/libSDL-1.2.so.0

Soundfix
sudo apt-get install libopenal1


--- Code: ---#!/bin/sh
sudo mv /usr/local/games/ut2004/System/openal.so /usr/local/games/ut2004/System/openal.so.bak
sudo ln -s /usr/lib/x86_64-linux-gnu/libopenal.so.1 /usr/local/games/ut2004/System/openal.so
--- End code ---

The_Cowboy:

--- Quote from: -Adler- on May 07, 2022, 12:41 ---Download
Unreal tournament 2004 DVD
https://archive.org/details/ut-2004-dvd

Megapack
edit path to your ut2004 path "/usr/local/games/ut2004/"


--- Code: ---#!/bin/sh
URL="https://www.utzone.de/forum/downloads.php?do=file&id=1194_UT2004-Mega-Pack-Linux-+-LinuxPatch-3369.2"
FILE=ut2004megapack-linux.tar.bz2
if test -f "$FILE"; then
    echo "$FILE exists."
tar -jxvf $FILE
cd UT2004MegaPack/
sudo cp -R * /usr/local/games/ut2004/
else
    echo "$FILE does not exist."

echo "Download $FILE URL= $URL"
fi
--- End code ---

sudo apt-get install libstdc++5
sudo ln -s /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0 /path/to/your/folder/UT2004/System/libSDL-1.2.so.0

Soundfix
sudo apt-get install libopenal1


--- Code: ---#!/bin/sh
sudo mv /usr/local/games/ut2004/System/openal.so /usr/local/games/ut2004/System/openal.so.bak
sudo ln -s /usr/lib/x86_64-linux-gnu/libopenal.so.1 /usr/local/games/ut2004/System/openal.so
--- End code ---

--- End quote ---

Hola Adler! Thanks for script lines and links. Just wondering if the DVD download is legal (not that I mind it, but some may).

Gil-galad:
Hello!
Indeed, I run a native linux install but on Manjaro. I had the help of a more skilled friend to set it up, and it was some time ago. I'm stating this to explain that I can't help you, even if I encourage you to try the native version.

I used the steam script.


You have a gog version that I didn't try.


The_Cowboy:

With steam it be trivial!! I am trying GOG version because of almost all the members here recommending it and the high discounts  8)
Adler's methodology seems to be working. I have already obtained the key from GOG support and will be using that for future gaming sessions.

Sorry about the warez key admins, but as [Mia]Latte pointed, it is the default setting and needs manual intervention.  O:-)

-Adler-:
UPDATE
Yeah,
i play ut2004 (x64) on Linux Mint 20.3 21 now.

Unreal Tournament 2004 DVD
https://archive.org/details/ut-2004-dvd

i installed with the orginal linux-installer.sh script from UT2004 DVD Version



mount UT2004_DVD.ISO

--- Code: ---cd Downloads
sudo mkdir /media/yourUsername/UT2004_DVD
sudo mount UT2004_DVD.ISO /media/yourUsername/UT2004_DVD -o loop

--- End code ---

Install UT2004 with linux-installer.sh

--- Code: ---cd /media/yourUsername/UT2004_DVD
sudo sh linux-installer.sh
--- End code ---


press the spacebar or newer version "s" key for "END USER LICENSE AGREEMENT"
CD Key like ABCDE-FGHIJ.....


after install unmount iso

--- Code: ---sudo umount /media/yourUsername/UT2004_DVD
--- End code ---

installed libraries
sudo apt-get install libstdc++5
sudo apt-get install libopenal1
sudo apt-get install libsdl1.2debian

installed UT2004 Mega Pack Linux + LinuxPatch 3369.2 from
https://www.utzone.de/forum/downloads.php?do=file&id=1194_UT2004-Mega-Pack-Linux-+-LinuxPatch-3369.2


--- Code: ---#!/bin/sh
URL="https://www.utzone.de/forum/downloads.php?do=file&id=1194_UT2004-Mega-Pack-Linux-+-LinuxPatch-3369.2"
FILE=ut2004megapack-linux.tar.bz2
if test -f "$FILE"; then
    echo "$FILE exists."
tar -jxvf $FILE
cd UT2004MegaPack/
sudo cp -R * /usr/local/games/ut2004/
else
    echo "$FILE does not exist."

echo "Download $FILE URL= $URL"
fi
--- End code ---

Linked the libs to ut2004 folder or copy the libs to ut2004 system folder
sudo ln -sf /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0  /usr/local/games/ut2004/System/libSDL-1.2.so.0
 (libSDL-1.2.so.0 linked to libSDL-1.2.so.0.11.4)

sudo ln -sf /usr/lib/x86_64-linux-gnu/libopenal.so.1 /usr/local/games/ut2004/System/openal.so
(openal.so linked to libopenal.so.1.19.1)

graphics card problems (Intel HD Graphics laptop)
resolution higher 800x600 > UT crashed (driver)

--- Code: ---sudo apt-get install xserver-xorg-video-intel-hwe-18.04
--- End code ---
Error Message like

--- Code: ---X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  153 (XFree86-VidModeExtension)
  Minor opcode of failed request:  10 (XF86VidModeSwitchToMode)
  Value in failed request:  0x6800016
  Serial number of failed request:  235
  Current serial number in output stream:  237
AL lib: (EE) alc_cleanup: 2 devices not closed

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version