如何部署Debian OpenOffice?

Debian-Like

1 前言

一个问题,一篇文章,一出故事。
笔者遇到LibreOffice因为嵌入式字体的问题导致Excel档案变大(把常用的字体嵌入到Excel档案中),然后MS Excel缓慢问题,于是改用OpenOffice。

2 最佳实践

2.1 删除LibreOffice

apt remove -y libreoffice*
apt autoremove -y

2.2 下载OpenOffice

wget https://zenlayer.dl.sourceforge.net/project/openofficeorg.mirror/4.1.14/binaries/zh-CN/Apache_OpenOffice_4.1.14_Linux_x86-64_install-deb_zh-CN.tar.gz

以上只是演示,如果不能下载或需要其他版本,请从以下连接下载,
https://www.openoffice.org/download/index.html

2.3 安装OpenOffice

tar -xf Apache_OpenOffice_4.1.14_Linux_x86-64_install-deb_zh-CN.tar.gz
dpkg -i zh-CN/DEBS/*.deb
dpkg -i zh-CN/DEBS/desktop-integration/*.deb

参阅教程
==================
https://wiki.openoffice.org/wiki/Debian_Installation

没有评论

发表回复

Debian-Like
如何测试硬盘是否有环道?

1 前言 一个问题,一篇文章,一出故事。 笔者最近购入了一批二手的硬盘,由于需要确定硬盘是否有坏道, …

Debian-Like
如何安装Ubuntu的日志服务?

1 前言 一个问题,一篇文章,一出故事。 笔者今天发现Ubuntu默认找不到系统日志,需要额外安装, …

Debian-Like
如何Ubuntu编译安装openSSL?

1 基础知识 OpenSSL是一个开放源代码的软件库包,应用程序可以使用这个包来进行安全通信,避免窃 …