參考bolg:
-環境
- centos 7.5
- openoffice4.0
-安裝方法
- 上傳安裝,鏈結位址安裝包
- 命令安裝
wget
# tar -zxvf apache_openoffice_4.0.0_linux_x86-64_install-rpm_zh-cn.tar.gz -c /data/soft/
2.解壓完成後會在安裝目錄下有乙個zh-cn 進入rpms目錄下,執行yum localinstall *.rpm
# cd /data/soft/zh-cn/rpms
# yum localinstall *.rpm
3.安裝完成之後進入rpms目錄下的desktop-integration資料夾,執行openoffice4.0-redhat-menus-4.0-9702.noarch.rpm:yum localinstall openoffice4.0-redhat-menus-4.0-9702.noarch.rpm
# cd /rpms/desktop-integration
# openoffice4.0-redhat-menus-4.0-9702.noarch.rpm:yum localinstall openoffice4.0-redhat-menus-4.0-9702.noarch.rpm
4.安裝完成之後啟動服務就行,安裝軟體會安裝在/opt/openoffice4目錄下
- 臨時啟動
# /opt/openoffice4/program/soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
# nohup /opt/openoffice4/program/soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
/**記得等一會出現#或者$在關閉視窗,不然服務起不來
*/
5檢視服務啟動
# netstat -lnp |grep 8100
如果出現下面的這種情況說明啟動成功
tcp 0 0 127.0.0.1:8100 0.0.0.0:* listen 13903/soffice.bin
如果沒有成功看一下8100是否開放,如果已經開放那麼在輸入命令openoffice4
# openoffice4
#/opt/openoffice4/program/soffice.bin: error while loading shared libraries: libxext.so.6: cannot open shared object file: no such file or directory
如果出現這種情況,說明在/opt/openoffice4/program/下缺少libxext.so.6檔案,可以去/usr/lib64 或者 /usr/lib 檢視有沒有這個檔案,如果有就copy到/opt/openoffice4/program/目錄裡面,如果沒有在安裝
# yum install libxext.x86_64
安裝完成後在那兩個目錄中找到複製到/opt/openoffice4/program/下,cp 複製命令
# cp -a usr/lib64/libxext.so.6 /opt/openoffice4/program/
拷貝完成後再輸入openoffice4
# openoffice4
# /opt/openoffice4/program/soffice.bin: error while loading shared libraries: libfreetype.so.6: cannot open shared object file: no such file or directory
# yum install freetype
再複製到
# cp -a usr/lib64/libfreetype.so.6 /opt/openoffice4/program/
# openoffice4/**再試一次*/
# no suitable windowing system found, exiting/**t_t真麻煩*/
報問題:no suitable windowing system found, exiting.
# yum groupinstall "x window system"
安裝完成之後,啟動openoffice
# openoffice4/**終於沒報錯了^_^*/
看看服務起來沒
# netstat -lnp |grep 8100
#tcp 0 0 127.0.0.1:8100 0.0.0.0:* listen 13903/soffice.bin
好了,安裝完成,我們可以使用openoffice的服務了
調錯
[root@izwz9cvxma7yo7ir62efpiz /]# openoffice4
/opt/openoffice4/program/soffice.bin x11 error: can't open display:
set display environment variable, use -display option
or check permissions of your x-server
(see "man x" resp. "man xhost" for details)
這個報錯重啟就好了
linux自己編寫的指令碼檔案內容,待驗證(可能存在錯誤)。。。
#!/bash/sh
#openoffice service start
/opt/openoffice4/program/soffice --headless --accept="socket,host=127.0.0.1,port=8100;urp;" --nofirststartwizard &
Linux下OpenOffice的安裝與啟動
cd opt openoffice4 program 啟動命令 soffice headless accept socket,host 127.0.0.1,port 8100 urp nofirststartwizard 檢視ps ef grep soffice程序 查殺程序 kill 9 4119...
fedora下面安裝Openoffice
我的fedora是cd版的,特別精簡,沒有openoffice,今天得用了,得安裝乙個openoffice 一 首先安裝openoffice.org套件 yum groupinstall office productivity 安裝好後,由於採用預設安裝,語言是英文,我可以通過以下方法來查詢來安裝中...
openOffice安裝及服務啟動
一 安裝openoffice 1.使用tar xzvf ooo 3.2.0 linuxintel install wjre en us.tar.gz解壓縮後,會得到ooo320 m12 native packed 1 en us.9483 目錄。2.進入ooo320 m12 native packe...