View Single Post
  #6 (permalink)  
Old 04-17-2007, 04:42 PM
dijichi2 dijichi2 is offline
OpenSource Builder & Moderator
 
Posts: 1,158
Default

Hi

To get NPTL on debian 3.1, just install any 2.6 kernel, you get nptl at special offer, no extra charge. FWIW, I'm still seeing the kernel permissions bug under DEBIAN3.1 even with the latest uptodate 2.6 kernel, and it affects mailboxes as well as redolog, but I haven't seen any similar problems under DEBIAN 4.0.

The rpm thing is just the zmdumpenv only currently handles OSX, and then falls back to rpm as default. To fix it for dpkg, change:

Quote:
if [ x$P = "xMACOSX" -o "x$P" = "xMACOSXx86" ]; then
ls -ld /Library/Receipts/zimbra-*
else
rpm -qi zimbra-core
fi
to

Quote:
if [ x$P = "xMACOSX" -o "x$P" = "xMACOSXx86" ]; then
ls -ld /Library/Receipts/zimbra-*
elif [ "x$P" = "xUBUNTU6" -o "x$P" = "xDEBIAN3.1" ]; then
dpkg -s zimbra-core
else
rpm -qi zimbra-core
fi
BTW jholder you're right, it doesnt update to 4.5.4 properly!
Reply With Quote