I am absolutely new to Scalix and wanted to install and evaluate it. I downloaded the community vesrion for fedora Core 4 and ran into the problem - the installer quits right after i start it.
The first attempt to run it produced the following result:
Scalix Installer - extracting archive, please wait...
tail: cannot open `+155' for reading: No such file or directory
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors
Error: Build does not contain version for the version of Python installed. Please ensure you have Python 2.2, 2.3 or 2.4 installed. Aborting.
Scalix Installer - cleaning up...
Then, I found that line 125 in scalix-installer read:
Code: Select all
tail +$SKIP $0 | tar xzm -C "$WRKDIR"
I believe, it should be
Code: Select all
tail -n +$SKIP $0 | tar xzm -C "$WRKDIR"
After I changed that and ran the script again, it quit will the following output:
Scalix Installer - extracting archive, please wait...
tar: Skipping to next header
gzip: stdin: invalid compressed data--crc error
gzip: stdin: invalid compressed data--length error
tar: Child returned status 1
tar: Error exit delayed from previous errors
/usr/bin/python: can't open file '/tmp/scalix-wizard.sqk543/py24/sxversion.pyc': [Errno 2] No such file or directory
Scalix Installer - starting version ...
Scalix Installer - using Python 2.4.2.
/usr/bin/python: can't open file '/tmp/scalix-wizard.sqk543/py24/sxmerlin.pyc': [Errno 2] No such file or directory
Scalix Installer - cleaning up...
Scalix Installer - stopped.
So, there seems to be a problem with the arcive that is incorporated into the installation script.
The md5 sum for the downloaded archive is
, which is what it should be.be3daeee9262c1938eaa1f9dfbdc464d scalix-core-intel-redhat-10.0.1.tar.gz
Is there a corrupt archive in the script or I am missing something?
Thanks.