云网牛站
所在位置:首页 > Linux教程 > 在Deepin 20.2.2系统下升级和美化LibreOffice的命令

在Deepin 20.2.2系统下升级和美化LibreOffice的命令

2021-07-17 08:56:59作者:keep_up稿源:深度站

因为Deepin 20.2.2系统当前的上游为Debian buster,所以附带的LibreOffice版本较老些,而在Deepin打包系统的时候缺少了libreoffice-gtk3软件包,所以,LibreOffice看起来并不美观。本文可以解决这两个问题,直接升级LibreOffice并且美化它,让它看起来精美一些,做到这一点并不难,直接运行以下命令即可。

 

操作方法

下面通过执行以下一系列命令临时添加Debian buster-backports源,然后就可以直接升级到LibreOffice 7.0并美化了界面。手动安装可参考在Deepin 20.2系统下安装LibreOffice 7.1.2中文正體版

在Deepin 20.2.2系统下升级和美化LibreOffice的命令

操作方法:使用具备管理员(root)权限的帐户,将下列命令全部粘贴到系统终端里面,然后输入密码以通过验证,开始进行升级。

 

执行的命令

cat > /tmp/upgrade-libreoffice.sh << end_of_file

#!/bin/sh

# See the following link for details.

# https://packages.debian.org/search?keywords=libreoffice&searchon=names&exact=1&suite=all§ion=main

# https://wiki.debian.org/LibreOffice

_list='/etc/apt/sources.list.d/debian-buster-backports.list'

mkdir -p \$(dirname \$_list)

cat > \$_list << eof

deb http://mirrors.ustc.edu.cn/debian buster-backports main contrib non-free

eof

apt-get update

apt-get -t buster-backports install libreoffice-base libreoffice-gtk3 --no-install-recommends -y

rm \$_list

end_of_file

chmod +x /tmp/upgrade-libreoffice.sh

sudo /tmp/upgrade-libreoffice.sh

 

相关主题

在Deepin下卸载LibreOffice等软件的方法,附卸载失败的原因

精选文章
热门文章