MoinMoin
MoinMoin is a wiki. It is written in Python. Here follows a quick and dirty install based on:
http://moinmoin.wikiwikiweb.de/DesktopEdition. You'll want to carefully read each statement before executing it in case as not all commands will be applicable to all distro types (the howto below is really for a redhat based server).
cd /root
# grap moin, e.g. wget -O moin-desktop.zip
http://voxel.dl.sourceforge.net/sourceforge/moin/moin-desktop-1.3.4-2.zip
unzip moin-desktop.zip
cd /root/moin-desktop
# else you'll get permission errors
chown -R apache:apache /root/moin-desktop/wiki
# so moin runs on the public interface, not just localhost
replace "'localhost'" "''" -- /root/moin-desktop/moin.py
# use the rhel apache user (not the www-data used by debian)
replace www-data apache -- /root/moin-desktop/MoinMoin/server/standalone.py
replace www-data apache -- /root/moin-desktop/MoinMoin/server/twistedmoin.py# so it boots up on startup
echo "nohup python /root/moin-desktop/moin.py &" >> /etc/rc.local
# start it up now
nohup python /root/moin-desktop/moin.py &
echo Now you can browse moin at:
http://yourip:8080/