博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下安装OpenOffice
阅读量:7125 次
发布时间:2019-06-28

本文共 3474 字,大约阅读时间需要 11 分钟。

1. 下载OpenOffice, 执行#unzip ~~,解开后有3个文件夹:license、readme、 rpm 文件,只需要su切换    到超级用户。


2. 然后,执行rpm -ivh --force --nodeps *.rpm


3. 最后执行/opt/Openffice/program中的shell(如swriter)。


Linux Installation
Package
Linux RedHat or Fedora 6 can be used
Installation Steps
Follow instruction to install RedHad or Fedora 6
create user mwadmin with password mwadmin for easy management
start /etc/init.d/vsftpd for file transfer program, if not start, type
/etc/init.d/vsftpd start
Configuration Testing
Check whether the new user mwadmin is exist, FTP is available. 
Java SDK Installation
Package
jdk-6-linux-i586-rpm.bin
Installation Steps
goto /home/mwadmin, will see this file
Execute the installation program
chmod 700 jdk-6-linux-i586-rpm.bin
execute this file
The Java environment will be resident in 
- /usr/java/jdk1.6.0/jre/bin
- /usr/java/jdk1.6.0/bin
Configuration Testing
change directory (cd) to the exact java location and then type ./java -version to check whether the java version is correct or not
Tomcat Installation
Package
apache-tomcat-5.5.23.tar.gz
Installation Step
tar zxvf apache-tomcat-5.5.23.tar.gz
cp -r apache-tomcat-5.5.23 /usr/share/tomcat5
Update the startup / shutdown script
startup.sh - 
chmod 700 startup.sh
add line "export JAVA_HOME=/usr/java/jdk1.6.0/jre" for the first line inside startup.sh
shutdown.sh - 
chmod 700 shutdown.sh
add line "export JAVA_HOME=/usr/java/jdk1.6.0/jre" for the first line inside shutdown.sh
Link up the JDK of the new install Sun Java platform to the Tomcat
Configuration Testing
Start up the tomcat server by typing /usr/share/tomcat5/bin/startup.sh
type http://xxxx:8080   to see whether the tomcat front page appear or not. Xxxx is the address or domain name of the server
MySQL Installation
Package
MySQL-server-5.0.37-0.glibc23.i386.rpm
Installation Step
rpm -ivh MySQL-server-5.0.37-0.glibc23.i386.rpm
Need to open the port for remote access
Configuration Testing
start mysql and see whether can access theuser or not.
OpenOffice Installation
Package
Ooo_2.1.0_LinuxIntel_install_en-US.tar (English version)
Installation Step
tar zxvf Ooo_2.1.0_LinuxIntel_install_en_US.tar
cd RPM
rm -r -f desktop*
rpm -Uvh *
Configuration Testing
cd /opt/openoffice.org2.1/program
start the openoffice by ./soffice
Complete the registration of the office before start in server mode.
Font Installation
Installation Step
copy windows TrueType Font from windows to Linux
copy to Linux directory /usr/shrae/fonts/zh_CN/TrueType
ttmkfdir -o fonts.scale
mkfontdir
fc-cache -v -f
Font to install include
ARIALBD
ARIBLK
ARLRDBD
SIMSUN
WINGDING
WINGDNG2
WINGDNG3
MW Application Creation
Installation Step 
install.sh
installsql.sh
update /etc/hosts
execute openoffice /opt/openoffice.org2.1/program
soffice -headless -accept="socket,host=0,port=8100;urp;"
Berkeley DB
Package
db-4.3.29.tar.gz
Installation Step
gzip -dc downloadpath/db-4.3.29.tar.gz | tar xvf -
cd db-4.3.29/buidl_unix
../dist/configure --prefix=/usr/local/
make
/bin/su -c "make install"
Configuration Testing
check /usr/local/lib exist it "libdb-4.1.so"
OpenLDAP
Package
openldap-2.3.34.tgz
Installation Step
gzip -dc downloadpath/openldap-2.3.34.tgz | tar xvf -
cd openldap-2.3.34
./configure --enable-wrappers (advert:this will tell for you type "make deperd" for ok)
make deperd
make
make test
/bin/su -c "make install"
Configuration Testing
check /usr/local/libexec exist it "slapd"
本文转自kenty博客园博客,原文链接http://www.cnblogs.com/kentyshang/archive/2007/06/08/776455.html如需转载请自行联系原作者

kenty

你可能感兴趣的文章
线程的几种可运行状态
查看>>
[bzoj 2555]Substring
查看>>
tab标签
查看>>
ecshop新增银联企业网银支付方式
查看>>
Angular5学习笔记 - 配置NG-ZORRO(八)
查看>>
使用Netty实现HTTP服务器
查看>>
JAVA开发工具eclipse中@author怎么改
查看>>
存储引擎与锁
查看>>
sqlog连接虚拟机mysql服务
查看>>
出错,网页显示不出内容
查看>>
Spring中的后置处理器BeanPostProcessor讲解
查看>>
《FPGA全程进阶---实战演练》第十四章 蜂鸣器操作
查看>>
浅析firmware完整生存和使用流程 【转】
查看>>
《30天自制操作系统》笔记(01)——hello bitzhuwei’s OS!【转】
查看>>
MMU介绍【转】
查看>>
构造函数
查看>>
利用自定义DataTable来重画数据集的用法
查看>>
职场沟通技巧
查看>>
Python爬虫——解决urlretrieve下载不完整问题且避免用时过长
查看>>
如何区分云计算和非云计算,首先得看它的核心本质——计算是否在线,计算的使用是否通过互联网完成。我从在阿里巴巴做云计算的第一天开始,就告诉自己:“云计算是一个社会最基础的公共服务,就像电一样。”...
查看>>