PDA

View Full Version : Unreal Tournament 2003 demo installation


itix
April 16th, 2008, 03:50 PM
This is waht I get:

itix@itix-laptop:~/Downloads$ chmod u+x ut2003demo-lnx-2206.sh.binitix@itix-laptop:~/Downloads$ ./ut2003demo-lnx-2206.sh.bin
Verifying archive integrity...tail: cannot open `+266' for reading: No such file or directory
Error in checksums: 1386214276 is different from 764522044


My computer is an Acer Aspire 3610:
Intel Pentium Celeron 1.5 ghz
1 gb DDR2
Intel 910/915 chipset graphics
Lotsa other stuff.

schmatzler
April 28th, 2008, 10:40 AM
Open the file with an Hex-Editor (for example GHex) and replace every "tail +266" with "tail -n +266". :)

drink
June 26th, 2008, 01:34 AM
I have a better solution for this install
Just create your own 'tail' script
it looks like this:

#!/bin/sh
/usr/bin/tail -n $*

Put it in your path before /usr/bin someplace (I used $HOME/bin)
Make it executable
Delete it after the install.

Problem solved!

P.S. run the installer with "bash ./linux-installer.sh"

Saatii
August 6th, 2008, 09:05 PM
To make it ultra clear:

Create the script and name it whatever you want. I used "ut_script".
Create a folder in your home directory called bin - /home/<username>/bin - and put your script in it.
Open a console and enter: PATH=$PATH:/home/<username>/bin/ut_script
Run the ut_installer.sh with bash,so that's not './' or 'sh', because those are dash-thingies.

EDIT;
whoopsiedaisy, Drink allready said the bash thingy

greets,
prakka

Brebs
August 7th, 2008, 01:21 AM
There is an easier fix (http://icculus.org/lgfaq/):
export _POSIX2_VERSION=199209