Linux下安装OpenOffice

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介:
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

相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
3月前
|
Linux
手把手教会你安装Linux系统
手把手教会你安装Linux系统
108 0
|
12天前
|
Oracle 关系型数据库 Linux
linux8安装oracle 11g遇到的问题记录
Oracle 11g在Linux 8上安装时会遇到link编译环节的问题。官方建议忽略安装中的链接错误,安装完成后应用DBPSU 11.2.0.4.240716补丁及一次性补丁33991024,再重新编译二进制文件,并配置监听器和数据库。但因11g已退出服务期,这些补丁需付费获取。网上信息显示22年1月的PSU补丁也可解决问题,找到该补丁后按常规方式打补丁即可。如有需求或疑问可咨询我。
54 20
|
4天前
|
弹性计算 运维 Ubuntu
os-copilot在Alibaba Cloud Linux镜像下的安装与功能测试
我顺利使用了OS Copilot的 -t -f 功能,我的疑惑是在换行的时候就直接进行提问了,每次只能写一个问题,没法连续换行更有逻辑的输入问题。 我认为 -t 管道 功能有用 ,能解决环境问题的连续性操作。 我认为 -f 管道 功能有用 ,可以单独创建可连续性提问的task问题。 我认为 | 对文件直接理解在新的服务器理解有很大的帮助。 此外,我还有建议 可以在非 co 的环境下也能进行连续性的提问。
44 7
|
1月前
|
Linux Python
Linux 安装python3.7.6
本教程介绍在Linux系统上安装Python 3.7.6的步骤。首先使用`yum`安装依赖环境,包括zlib、openssl等开发库。接着通过`wget`下载Python 3.7.6源码包并解压。创建目标文件夹`/usr/local/python3`后,进入解压目录执行配置、编译和安装命令。最后设置软链接,使`python3`和`pip3`命令生效。
|
1月前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
155 20
|
28天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
180 7
|
1月前
|
Unix Linux 编译器
UNIX/Linux 上的安装
UNIX/Linux 上的安装。
52 2
|
3月前
|
Linux 测试技术 网络安全
Linux系统之安装OneNav个人书签管理器
【10月更文挑战第19天】Linux系统之安装OneNav个人书签管理器
129 5
Linux系统之安装OneNav个人书签管理器
|
2月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
99 4
|
3月前
|
监控 Java Linux
Linux系统之安装Ward服务器监控工具
【10月更文挑战第17天】Linux系统之安装Ward服务器监控工具
82 5
Linux系统之安装Ward服务器监控工具