通用(centos,redhat)版Linux安装LibreOffice

(jdk必须存在,并在运行)
1.准备安装包

cd /opt

wget http://mirrors.ustc.edu.cn/tdf/libreoffice/stble/6.1.2/rpm/x86_64/LibreOffice_6.1.2_Linux_x86-64_rpm.tar.gz

wget http://mirrors.ustc.edu.cn/tdf/libreoffice/stble/6.1.2/rpm/x86_64/LibreOffice_6.1.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz

tar -zxvf LibreOffice_6.1.2_Linux_x86-64_rpm.tar.gz

tar -zxvf LibreOffice_6.1.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz

2.安装

yum install /opt/LibreOffice_6.1.2_Linux_x86-64_rpm/RPMS/*.rpm

yum install
/opt/LibreOffice_6.1.2_Linux_x86-64_rpm_langpack_zh-CN/RPMS/*.rpm

3.修改配置文件启动

vim /etc/rc.d/rc.local

尾部添加

/usr/bin/libreoffice6.1 --headless --accept=”socket,host=127.0.0.1,port=8100;urp;”
–nofirststartwizard

chmod +x /etc/rc.d/rc.local

启动

/usr/bin/libreoffice6.1 --headless --accept=”socket,host=127.0.0.1,port=8100;urp;”- -nofirststartwizard &

检查是否启动

ps -ef|grep libreoffice

中文乱码解决办法

把window系统中c:\Window\Fonts文件夹复制一份打包成Fonts.zip,放入linux系统中的/usr/share/fonts中,在当前的linux目录中执行以下命令:

unzip Fonts.zip

mv Fonts win

cd win

chmod -Rf 755 *

mkfontscale(如果没有此命令,执行yum install -y
fontconfig mkfontscale)

mkfontdir

fc-cache -fv

(如果字体放入缓存没有解决中文乱码,重启服务器电脑)

你可能感兴趣的:(linux中使用word)