View Single Post
  #21 (permalink)  
Old 11-06-2007, 09:58 AM
neemers neemers is offline
Member
 
Posts: 10
Default

Quote:
Originally Posted by dijichi2 View Post
sudo apt-get install fetchmail # this is needed anyway, seems to be only thing missing with default feisty install

then either:

1) edit /etc/lsb-release
change
DISTRIB_RELEASE=7.04
to
DISTRIB_RELEASE=6

or

2)
edit util/utilfunc.sh
change
if [ $PLATFORM = "DEBIAN3.1" -o $PLATFORM = "UBUNTU6" ]; then
to
if [ $PLATFORM = "DEBIAN3.1" -o $PLATFORM = "UBUNTU6" -o $PLATFORM = "UBUNTUUNKNOWN" ]; then

change
if [ $PLATFORM = "UBUNTU6" ]; then
to
if [ $PLATFORM = "UBUNTU6" -o $PLATFORM = "UBUNTUUNKNOWN" ]; then

edit
util/modules/platform.sh
change
if [ $PLATFORM = "DEBIAN3.1" -o $PLATFORM = "MANDRIVA2006" -o $PLATFORM = "UBUNTU6" ]; then
to
if [ $PLATFORM = "DEBIAN3.1" -o $PLATFORM = "MANDRIVA2006" -o $PLATFORM = "UBUNTU6" -o $PLATFORM = "UBUNTUUNKNOWN" ]; then

they both do pretty much same thing so 1) is easier, just change it back when install finished.

As usual, this is not recommended for production servers! YMMV.

Has anyone been able to install ZCS 4.5.9 using these options above? I used option 1 from above and it would not work when running the intall for 4.5.9. I'm upgrading from 4.5.6 I. I've done an upgrade before, but 4.5.9 is telling me that...

Found zimbra-core
Error: attempting to install i386 packages on a unknown OS.
Exiting...

I have yet to try the other options from above but was curious if anyone else is seeing this?
Reply With Quote