linux下安装openoffice作为PDF转换服务

1. 获取openoffice安装包

wget http://download.services.openoffice.org/files/localized/zh-cn/3.1.1/OOo_3.1.1_LinuxIntel_install_zh-CN.tar.gz

2. 解压缩

tar -xvzf OOo_3.1.1_LinuxIntel_install_zh-CN.tar.gz

3.安装openoffice

cd OOO310_m19_native_packed-1_zh-CN.9420/

cd RPMS/

rpm -ivh --force --nodeps *.rpm

4.将windows下的TureType字库上传到linux的/usr/share/fonts/zh_CN/TrueType/目录下

ARIALUNI.TTF     
FZSTK.TTF        
FZYTK.TTF        
kaiu.ttf         
malgunbd.ttf     
malgun.ttf       
msjhbd.ttf       
msjh.ttf         
msmincho.ttc     
MSMINCHO.TTF     
msyhbd.ttf       
msyh.ttf         
simfang.ttf      
simhei.ttf       
simkai.ttf       
SIMLI.TTF        
simsunb.ttf      
SIMYOU.TTF       
STCAIYUN.TTF     
STFANGSO.TTF     
STHUPO.TTF       
STKAITI.TTF      
STLITI.TTF       
STSONG.TTF       
STXIHEI.TTF      
STXINGKA.TTF     
STXINWEI.TTF     
STZHONGS.TTF     
5. 重新加载字库

/etc/init.d/xfs reload

6. 以后台服务方式启动openoffice

/opt/openoffice.org3/program/soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard & 

 

你可能感兴趣的:(linux,windows,socket)