Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[UT2003]Checksums error
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Gamers & Players
View previous topic :: View next topic  
Author Message
Red Nalie
Guru
Guru


Joined: 24 Mar 2003
Posts: 484
Location: Den Helder - The Netherlands - Europe - Earth - Milky Way - Universe

PostPosted: Fri Nov 07, 2003 8:52 pm    Post subject: [UT2003]Checksums error Reply with quote

Code:

bash-2.05b# ./linux_installer.sh
Copying to a temporary location...
Verifying archive integrity...tail: cannot open `+266' for reading: No such file or directory
Error in checksums: 1006763953 is different from 3043856338

This is the error I'm getting, and I am unable to find a solution...
I'm a pretty good "searcher" ;), and nowhere I can find the answer, so I was hoping someone here knew the answer....

the checksums are different everytime (except the 'from #" part of course)....

Using kernel 2.6-test9 and KDE 3.2b (Yup, I'm up to date ;))
Is it the kernel or...... :?:
_________________
Many people call me Linux-freak, I just see me as a freak who uses Linux :)

i'm a little n00bie short and stout, here is my nickname here is my SHOUT!!!1 when i get all flamed up hear me SHOUT!!1 ban me forever, kick me out
Back to top
View user's profile Send private message
Red Nalie
Guru
Guru


Joined: 24 Mar 2003
Posts: 484
Location: Den Helder - The Netherlands - Europe - Earth - Milky Way - Universe

PostPosted: Thu Dec 18, 2003 2:24 pm    Post subject: Reply with quote

*kick*

I need this problem solved....
_________________
Many people call me Linux-freak, I just see me as a freak who uses Linux :)

i'm a little n00bie short and stout, here is my nickname here is my SHOUT!!!1 when i get all flamed up hear me SHOUT!!1 ban me forever, kick me out
Back to top
View user's profile Send private message
Jazz
Guru
Guru


Joined: 16 Nov 2003
Posts: 543
Location: Melbourne, Australia

PostPosted: Thu Dec 18, 2003 3:17 pm    Post subject: Reply with quote

*kick* *Kick* and *Kick*,

Man even i want the solution for this, i cant get all my games running due to this ! i can indeed get the games in the portage to run fine, but when i try to run any game that i get externally from a friend or from the net i just getthis tail error all the time !!

Please help, heres the output from two diff games that i tried !
Quote:

bash-2.05b# ls -il
total 174992
1072 -rwxrwxrwx 1 root root 41910151 Nov 22 2000 SinDemo_x86.run
1070 -r-xr-xr-x 1 root root 212 Jul 11 15:52 info.txt
1071 -rwxrwxrwx 1 root root 137253079 May 30 2003 ut2003demo-lnx-2206.sh.bin
bash-2.05b# sh Sin*.run
Creating directory SinDemo
Verifying archive integrity...tail: cannot open `+6' for reading: No such file or directory
Error in check sums 1439772192 3661921217
bash-2.05b# sh ut*.sh.bin
Verifying archive integrity...tail: cannot open `+266' for reading: No such file or directory
Error in checksums: 3542759216 is different from 764522044
bash-2.05b#


i hope this info might help to get to a possible solution.. man this is really irrating, i actually wasted alot of time getting those demos ! and now they dont wanna run !

Bye,
Jassi
Back to top
View user's profile Send private message
Kirschsaft
n00b
n00b


Joined: 05 Jul 2003
Posts: 22

PostPosted: Fri Dec 19, 2003 1:36 pm    Post subject: Reply with quote

The problem is caused by coreutils. It uses a new syntax since quite some time now. The installers still use the old one. You can "enable" the old syntax though:
Code:

bash-2.05b# _POSIX2_VERSION=199209 ./linux_installer.sh
Back to top
View user's profile Send private message
Jazz
Guru
Guru


Joined: 16 Nov 2003
Posts: 543
Location: Melbourne, Australia

PostPosted: Fri Dec 19, 2003 2:26 pm    Post subject: Reply with quote

COOOL !!
but whats the 199209 for ?? do we need to change that ?,

If that works.. I"M GONNA KISS YOU :D :D
Bye,
Jassi
Back to top
View user's profile Send private message
Kirschsaft
n00b
n00b


Joined: 05 Jul 2003
Posts: 22

PostPosted: Fri Dec 19, 2003 4:13 pm    Post subject: Reply with quote

jassi wrote:
COOOL !!
but whats the 199209 for ?? do we need to change that ?,

An exerpt from the coreutils manual regarding the 199209:
coreutils manual wrote:

Newer versions of POSIX are occasionally incompatible with older
versions. For example, older versions of POSIX required the command
`sort +1' to sort based on the second and succeeding fields in each
input line, but starting with POSIX 1003.1-2001 the same command is
required to sort the file named `+1', and you must instead use the
command `sort -k 2' to get the field-based sort.

The GNU utilities normally conform to the version of POSIX that is
standard for your system. To cause them to conform to a different
version of POSIX, define the `_POSIX2_VERSION' environment variable to
a value of the form YYYYMM specifying the year and month the standard
was adopted. Two values are currently supported for `_POSIX2_VERSION':
`199209' stands for POSIX 1003.2-1992, and `200112' stands for POSIX
1003.1-2001. For example, if you are running older software that
assumes an older version of POSIX and uses `sort +1', `head -1', or
`tail +1', you can work around the compatibility problems by setting
`_POSIX2_VERSION=199209' in your environment.


Currently your system seems to be using the newer POSIX type, but the installers expect the older one using wrong parameter for tail&co.

You only need to have _POSIX2_VERSION set to 199209 while youre installing your games. The way I do it, it will be reset to the newer POSIX type after the installer quits. You might as well simply export it before installing.
Back to top
View user's profile Send private message
Red Nalie
Guru
Guru


Joined: 24 Mar 2003
Posts: 484
Location: Den Helder - The Netherlands - Europe - Earth - Milky Way - Universe

PostPosted: Sat Dec 20, 2003 10:22 pm    Post subject: Reply with quote

Kirschsaft wrote:
jassi wrote:
COOOL !!
but whats the 199209 for ?? do we need to change that ?,

An exerpt from the coreutils manual regarding the 199209:
coreutils manual wrote:

Newer versions of POSIX are occasionally incompatible with older
versions. For example, older versions of POSIX required the command
`sort +1' to sort based on the second and succeeding fields in each
input line, but starting with POSIX 1003.1-2001 the same command is
required to sort the file named `+1', and you must instead use the
command `sort -k 2' to get the field-based sort.

The GNU utilities normally conform to the version of POSIX that is
standard for your system. To cause them to conform to a different
version of POSIX, define the `_POSIX2_VERSION' environment variable to
a value of the form YYYYMM specifying the year and month the standard
was adopted. Two values are currently supported for `_POSIX2_VERSION':
`199209' stands for POSIX 1003.2-1992, and `200112' stands for POSIX
1003.1-2001. For example, if you are running older software that
assumes an older version of POSIX and uses `sort +1', `head -1', or
`tail +1', you can work around the compatibility problems by setting
`_POSIX2_VERSION=199209' in your environment.


Currently your system seems to be using the newer POSIX type, but the installers expect the older one using wrong parameter for tail&co.

You only need to have _POSIX2_VERSION set to 199209 while youre installing your games. The way I do it, it will be reset to the newer POSIX type after the installer quits. You might as well simply export it before installing.


Can I kiss you?
I've been struggling for months with this problem, or I could kick you in the nuts for not telling me sooner ;)
_________________
Many people call me Linux-freak, I just see me as a freak who uses Linux :)

i'm a little n00bie short and stout, here is my nickname here is my SHOUT!!!1 when i get all flamed up hear me SHOUT!!1 ban me forever, kick me out
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gamers & Players All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum