Results 1 to 5 of 5

Thread: Unreal Tournament 2003 demo installation

  1. #1
    Join Date
    Oct 2007
    Location
    Gnosjö, Swe
    Beans
    517
    Distro
    Ubuntu

    Unreal Tournament 2003 demo installation

    This is waht I get:

    Code:
    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.

  2. #2
    Join Date
    Mar 2008
    Beans
    2

    Re: Unreal Tournament 2003 demo installation

    Open the file with an Hex-Editor (for example GHex) and replace every "tail +266" with "tail -n +266".

  3. #3
    Join Date
    Jun 2006
    Beans
    22

    Re: Unreal Tournament 2003 demo installation

    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"

  4. #4
    Join Date
    Feb 2008
    Beans
    Hidden!

    Re: Unreal Tournament 2003 demo installation

    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
    Last edited by Saatii; August 7th, 2008 at 02:34 AM.

  5. #5
    Join Date
    Dec 2006
    Beans
    272

    Re: Unreal Tournament 2003 demo installation

    There is an easier fix:
    Code:
    export _POSIX2_VERSION=199209

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •