-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - --On 20. November 2006 06:12:21 +1030 David Lloyd <lloy0076@adam.com.au> wrote:
Luc,
My server is under Sun Solaris 10 sparc. I want to install Zope version 2 newest.(version binary not source code ). Anyone show me link to download.
PS : when i install source code zope 2 on sun solaris,always found bugs. But when i install it on redhat ,its works fine.
How did you unpack the source? Solaris' tar command:
gunzip -c Zope-2.9.5-final.tgz | tar -xvf -
...will fail to extract the Zope distribution because Solaris' tar contains a 100 character filename and path limit which *will* subtly break a Zope install script as there are paths in it that exceed 100 characters long.
Try:
gunzip -c Zope-2.9.5-final.tgz | tar -Exvf -
OR:
/usr/sfw/bin/gtar -xzvf Zope-2.9.5-final.tgz
GNU tools like 'gmake' and 'gtar' are always recommended when building Zope on *nix systems. - -aj -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) iD8DBQFFYX3BCJIWIbr9KYwRAro8AKDfOBQWyMMS8Xi3KbPrbHpmN07U7wCfeBAL ZZAsgVD2jkmnbFDf0pmjbgM= =tGsv -----END PGP SIGNATURE-----