前言:项目中要用到文档预览功能,经查阅需要用到openoffice插件,现将Ubuntu上的安装总结如下
1.卸载Ubuntu自带的LibreOffice
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
2.下载
选择.deb下载
网址:http://www.openoffice.org/download/index.html
3.解压OpenOffice 4.1.7安装包
## 64-bit
tar -xvf Apache_OpenOffice_4.1.7_Linux_x86_install-deb_zh-CN.tar.gz
用tab来补全就ok
4.安装OpenOffice 4.1.7
cd zh-CN/DEBS
sudo dpkg -i *.deb
cd desktop-integration
sudo dpkg -i *.deb
使用以上命令我们就可以顺利安装完成,现在大家即可在 Ubuntu 中享用 OpenOffice 4.1.7 了。
开启openoffice服务
nohup /opt/openoffice4/program/soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
用 netstat -tunlp | grep 8100
命令检查是否启动 就欧克了;