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. --------------------------------- Hãy ghé qua trang chủ Yahoo! Việt Nam!
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 19 Nov 2006, at 17:36, Luc Van Tien wrote:
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.
There is no Solaris binary, sorry. All Unix versions are installed using the source code. If you have problems, please post a detailed problem description with the *full traceback* if there is one. jens -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) iD8DBQFFYIqaRAx5nvEhZLIRAk1xAJ45L0mMdDEuApObo5cUE6R0avXWDQCghSrz +sdnq34u7FNac6F/+Dfc0uU= =D2gU -----END PGP SIGNATURE-----
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 ...and then run the install instructions. It should "just work". I have Zope 2 and Zope 3 running on Open Solaris ON (Solaris Community Edition) quite successfully after having discovered the above subtle issue. DSL
-----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-----
participants (4)
-
Andreas Jung -
David Lloyd -
Jens Vagelpohl -
Luc Van Tien