Difference between revisions of "ODF@WWW"
From Apache OpenOffice Wiki
Line 28: | Line 28: | ||
> cd / | > cd / | ||
> wget http://mediacast.sun.com/users/Kay.Ramme/media/odf-at-www-0.2.tgz | > wget http://mediacast.sun.com/users/Kay.Ramme/media/odf-at-www-0.2.tgz | ||
− | > gzcat odf-at-www.tgz | tar -xvf - | + | > gzcat odf-at-www-0.2.tgz | tar -xvf - |
# Install the JODConverter. | # Install the JODConverter. |
Revision as of 14:43, 22 July 2008
Blogs
- 04 Jul 2008 - ODF@WWW - Simply Install
- 27 Jun 2008 - ODF@WWW -How it works
- 19 Jun 2008 - ODF@WWW (An ODF Wiki)
An ODF Wiki
The below installation instructions help you to deploy a basic ODF Wiki. After executing the instructions you shall be able to browser it with this URL:
http://localhost:1234
respectively.
Installation Instructions
OpenSolaris 200805
# Allow X connect from the localhost. > xhost + # Become root ... > su - # Install OpenOffice.org suite, Apache and GNU make. > pkg install openoffice SUNWapch22 SUNWgmake > svccfg import /var/svc/manifest/network/http-apache22.xml > svcadm enable network/http:apache22 # Get odf-at-www installed. > cd / > wget http://mediacast.sun.com/users/Kay.Ramme/media/odf-at-www-0.2.tgz > gzcat odf-at-www-0.2.tgz | tar -xvf - # Install the JODConverter. > cd /opt/odf-at-www/cgi-bin > wget http://mesh.dl.sourceforge.net/sourceforge/jodconverter/jodconverter-2.2.1.zip > unzip jodconverter-2.2.1.zip > cd / # Some rights and directories. > chown -R webservd:webservd /var/odf-at-www /opt/odf-at-www # Finally get it running. > export SAL_USE_VCLPLUGIN=gen > export DISPLAY=:0 > soffice -accept="socket,port=8100;urp;" & > /usr/apache2/2.2/bin/apachectl restart
Ubuntu 8.04.1
# Allow X connect from the localhost. > xhost + localhost # Become root ... > sudo -i # Install Apache, OpenJDK. > apt-get install apache2 openjdk-6-jre-headless # Get odf-at-www installed. > cd / > wget http://mediacast.sun.com/users/Kay.Ramme/media/odf-at-www-0.2.tgz > tar -xvzf odf-at-www.tgz # Install the JODConverter. > cd /opt/odf-at-www/cgi-bin > wget http://mesh.dl.sourceforge.net/sourceforge/jodconverter/jodconverter-2.2.1.zip > unzip jodconverter-2.2.1.zip > cd / # Set rights on directories. > chown -R www-data:www-data /var/odf-at-www /opt/odf-at-www # Finally get it running. > export SAL_USE_VCLPLUGIN=gen > export DISPLAY=:0 > soffice -accept="socket,port=8100;urp;" > apache2ctl restart