From 60fbece7ae6d0ebf22326c9da461ca492eb3da14 Mon Sep 17 00:00:00 2001 From: littlebirdnest <63171986+littlebirdnest@users.noreply.github.com> Date: Thu, 17 Nov 2022 05:07:51 -0500 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BA=86=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...atest LibreOffice in Ubuntu and other Linux.md | 134 ------------------ ...atest LibreOffice in Ubuntu and other Linux.md | 134 ++++++++++++++++++ 2 files changed, 134 insertions(+), 134 deletions(-) delete mode 100644 sources/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md create mode 100644 translated/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md diff --git a/sources/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md b/sources/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md deleted file mode 100644 index 79b939b88d..0000000000 --- a/sources/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md +++ /dev/null @@ -1,134 +0,0 @@ -[#]: subject: "How to Install Latest LibreOffice in Ubuntu and other Linux" -[#]: via: "https://www.debugpoint.com/install-latest-libreoffice-ubuntu-linux/" -[#]: author: "Arindam https://www.debugpoint.com/author/admin1/" -[#]: collector: "lkxed" -[#]: translator: " " -[#]: reviewer: " " -[#]: publisher: " " -[#]: url: " " - -How to Install Latest LibreOffice in Ubuntu and other Linux -====== - -**Here’s a quick guide on how to install the latest LibreOffice version in Ubuntu and other Linux.** - -The free and open-source office suite LibreOffice comes in two versions. The Community and Enterprise versions. The “community” version is for early adopters who want the latest bleeding-edge software tech. And the “enterprise” version is more stable and may not include all the latest features, but it is ideal for the production environment and professional work. - -### Install Latest LibreOffice in Ubuntu and other Linux - -#### 1. Remove pre-installed LibreOffice - -The Ubuntu operating system and other Linux ideally come with pre-installed LibreOffice. That might not be the latest one because of the distribution-specific release cycles. However, before you do a fresh install, you can remove the stock version of LibreOffice in Ubuntu and its related derivatives via the below command: - -Open a terminal and run the below commands to remove the installed LibreOffice in Ubuntu and related distributions. For others, you can use your distro’s package manager to remove it. - -``` -sudo apt remove –purge libreoffice* -sudo apt autoclean -sudo apt autoremove -``` - -Do a reboot to ensure everything is okay (though you could skip this step). - -#### 2. Install via download - -Go to the [official download page][1]. And download the “Fresh” version by choosing the type from the drop-down. For Ubuntu and other derivatives, choose the .deb file. - -![LibreOffice download and install from official website][2] - -After downloading, extract the files; you should see all the packages below. - -![Extracted LibreOffice DEB files][3] - -Now, open a terminal at the extracted files’ exact location and run the commands below in sequence. Firstly, you need to install the `ure` package. The second is the `core` package and followed by all the basic packages. Finally, the main `LibreOffice` packages. A typical set of commands are present below. You need to change the version numbers for other releases. - -``` -sudo dpkg -i libobasis7.0-ure_7.0.4.2-2_amd64.deb -sudo dpkg -i libobasis7.0-core_7.0.4.2-2_amd64.deb -sudo dpkg -i libobasis7.0* -``` - -``` -sudo dpkg -i libreoffice7.0* -``` - -If you are using Fedora Linux or Red Hat Linux, use the [dnf command][4] to install in the same order as mentioned above. - -![Install LibreOffice via dpkg][5] - -Wait for the installation to finish. After completion, you can find LibreOffice via the application menu. - -![Latest LibreOffice in Menu][6] - -This should complete the steps to install the latest LibreOffice. If you don’t want to follow the above method, see the below options. - -#### Install via PPA - -If you like to install it via PPA, then follow the below steps. Make sure to remove the existing LibreOffice in step 1 above. - -``` -sudo add-apt-repository ppa:libreoffice/ppa -``` - -And finally, run the below commands to install the latest LibreOffice 5.4 series from this official PPA. - -``` -sudo apt update -sudo apt install libreoffice -``` - -Once installed, you can launch LibreOffice via Dash search. - -![LibreOffice 5.4.2 Running in Ubuntu][7] - -#### Install via Snap and Flatpak - -If you are a Linux user, you may try the LibreOffice self-contained executable, which runs in a sandbox like Snap or Flatpak. - -- To install LibreOffice via [Flatpak][8], visit [this page][9] to set it up and then run the below command to install it. - -``` -flatpak install flathub org.libreoffice.LibreOffice -``` - -- Similarly, for the [Snap version][10], use the following command to install. - -``` -sudo snap install libreoffice -``` - -### How can I upgrade to the latest LibreOffice version? - -If you do not want to remove LibreOffice but want to upgrade to the latest version, please read our complete guide below. - -> [Upgrade to Latest LibreOffice in Ubuntu, Linux Mint and Windows][11] - -![“Upgrade to Latest LibreOffice in Ubuntu, Linux Mint and Windows” — DebugPoint.com][12] - -Feel free to comment if you are having trouble installing the latest LibreOffice. - --------------------------------------------------------------------------------- - -via: https://www.debugpoint.com/install-latest-libreoffice-ubuntu-linux/ - -作者:[Arindam][a] -选题:[lkxed][b] -译者:[译者ID](https://github.com/译者ID) -校对:[校对者ID](https://github.com/校对者ID) - -本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 - -[a]: https://www.debugpoint.com/author/admin1/ -[b]: https://github.com/lkxed -[1]: https://www.libreoffice.org/download/download/ -[2]: https://www.debugpoint.com/wp-content/uploads/2017/10/LibreOffice-download-and-install-from-official-website.jpg -[3]: https://www.debugpoint.com/wp-content/uploads/2017/10/Extracted-LibreOffice-DEB-files.jpg -[4]: https://www.debugpoint.com/dnf-commands-examples/ -[5]: https://www.debugpoint.com/wp-content/uploads/2017/10/Install-LibreOffice-via-dpkg.jpg -[6]: https://www.debugpoint.com/wp-content/uploads/2017/10/Latest-LibreOffice-in-Menu.jpg -[7]: https://www.debugpoint.com/wp-content/uploads/2017/10/LibreOffice-5.4.2-Running-in-Ubuntu-.png -[8]: https://flathub.org/apps/details/org.libreoffice.LibreOffice -[9]: https://flatpak.org/setup/ -[10]: https://snapcraft.io/libreoffice -[11]: https://www.debugpoint.com/libreoffice-upgrade-update-latest/ -[12]: https://www.debugpoint.com/libreoffice-upgrade-update-latest/embed/#?secret=KINquNxuYI#?secret=FGij1s6Mfc diff --git a/translated/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md b/translated/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md new file mode 100644 index 0000000000..3eaae1e4ba --- /dev/null +++ b/translated/tech/20221104.3 ⭐️ How to Install Latest LibreOffice in Ubuntu and other Linux.md @@ -0,0 +1,134 @@ +[#]: subject: "How to Install Latest LibreOffice in Ubuntu and other Linux" +[#]: via: "https://www.debugpoint.com/install-latest-libreoffice-ubuntu-linux/" +[#]: author: "Arindam https://www.debugpoint.com/author/admin1/" +[#]: collector: "lkxed" +[#]: translator: "littlebirdnest" +[#]: reviewer: " " +[#]: publisher: " " +[#]: url: " " + +如何在Ubuntu和其他Linux中安装最新的Libreoffice +====== + +**在Ubuntu和其他Linux中安装最新的Libreoffice版本的快速指南。** + +免费和开源的办公套件Libreoffice有两个版本。社区版本和企业版本。社区版本主要是给前期的用户尝鲜,有较前沿的技术. 企业版本较为稳定但不会包括最新的功能,是生产环境和专业工作的最佳选择 + +### 在Ubuntu和其他Linux中安装最新的Libreoffice + +#### 1.删除预安装的libreoffice + +ubuntu和其他linux,带预安装的Libreoffice。这可能不是最新的,因为发行版的发行周期是之前的版本.但是,在进行新安装之前,您可以通过以下命令删除Ubuntu及其相关的旧版本: + +打开一个终端并运行以下命令,以删除Ubuntu和相关分布中的已安装的Libreoffice。对于其他人,您可以使用Distro的软件包管理器将其删除。 + +``` +sudo apt remove –purge libreoffice* +sudo apt autoclean +sudo apt autoremove +``` + +然后重启以确保一切正常(你也可以跳过) + +#### 2. 从网站上下载安装 + +前往[官方下载页面][1]. 并通过从下拉菜单中选择类型下载“Fresh”版本。对于Ubuntu和其他导数,请选择.deb文件。 + +![LibreOffice download and install from official website][2] + +下载后,提取文件;您应该看到下面的所有软件包。 + +![Extracted LibreOffice DEB files][3] + +下载解压后y,在提取文件的位置打开终端并按顺序运行以下命令。首先,你需要安装 ure 包。第二个是核心包,然后是所有基本包。最后,就是主要的 LibreOffice 软件包。下面是主要一些的命令。但是您需要更具体版本的版本号。 + +``` +sudo dpkg -i libobasis7.0-ure_7.0.4.2-2_amd64.deb +sudo dpkg -i libobasis7.0-core_7.0.4.2-2_amd64.deb +sudo dpkg -i libobasis7.0* +``` + +``` +sudo dpkg -i libreoffice7.0* +``` + +如果您使用的是 Fedora Linux 或 Red Hat Linux,请按照上述相同的顺序使用[dnf 命令][4] + +![Install LibreOffice via dpkg][5] + +等待安装完成。完成后,您可以通过应用程序菜单找到 LibreOffice。 + +![Latest LibreOffice in Menu][6] + +这应该完成安装最新 LibreOffice 的步骤。如果您不想遵循上述方法,请参阅以下选项。 + +#### 通过 PPA 安装 + +如果您想通过 PPA 安装它,请按照以下步骤操作。确保在上面的第 1 步中删除现有的 LibreOffice。 + +``` +sudo add-apt-repository ppa:libreoffice/ppa +``` + +最后,运行以下命令从这个官方 PPA 安装最新的 LibreOffice 5.4 系列。 + +``` +sudo apt update +sudo apt install libreoffice +``` + +安装后,您可以通过 Dash 搜索启动 LibreOffice。 + +![LibreOffice 5.4.2 Running in Ubuntu][7] + +#### 通过 Snap 和 Flatpak 安装 + +如果您是 Linux 用户,您可以尝试 LibreOffice 独立的可执行文件,它在 Snap 或 Flatpak 等沙箱中运行。 + +- 要通过[Flatpak][8]安装 LibreOffice ,请访问this page][9] 进行设置,然后运行以下命令进行安装 + +``` +flatpak install flathub org.libreoffice.LibreOffice +``` + +- 同样,对于[Snap version][10],使用以下命令进行安装。 + +``` +sudo snap install libreoffice +``` + +### 如何升级到最新的 LibreOffice 版本? + +如果您不想删除 LibreOffice 但想升级到最新版本,请阅读我们下面的完整指南。 + +> [在 Ubuntu、Linux Mint 和 Windows 中升级到最新的 LibreOffice[11] + +![“在 Ubuntu、Linux Mint 和 Windows 中升级到最新的 LibreOffice” — DebugPoint.com][12] + +如果您在安装最新的 LibreOffice 时遇到问题,请随时发表评论。 + +-------------------------------------------------------------------------------- + +via: https://www.debugpoint.com/install-latest-libreoffice-ubuntu-linux/ + +作者:[Arindam][a] +选题:[lkxed][b] +译者:[littlebirdnest](https://github.com/译者ID) +校对:[校对者ID](https://github.com/校对者ID) + +本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 + +[a]: https://www.debugpoint.com/author/admin1/ +[b]: https://github.com/lkxed +[1]: https://www.libreoffice.org/download/download/ +[2]: https://www.debugpoint.com/wp-content/uploads/2017/10/LibreOffice-download-and-install-from-official-website.jpg +[3]: https://www.debugpoint.com/wp-content/uploads/2017/10/Extracted-LibreOffice-DEB-files.jpg +[4]: https://www.debugpoint.com/dnf-commands-examples/ +[5]: https://www.debugpoint.com/wp-content/uploads/2017/10/Install-LibreOffice-via-dpkg.jpg +[6]: https://www.debugpoint.com/wp-content/uploads/2017/10/Latest-LibreOffice-in-Menu.jpg +[7]: https://www.debugpoint.com/wp-content/uploads/2017/10/LibreOffice-5.4.2-Running-in-Ubuntu-.png +[8]: https://flathub.org/apps/details/org.libreoffice.LibreOffice +[9]: https://flatpak.org/setup/ +[10]: https://snapcraft.io/libreoffice +[11]: https://www.debugpoint.com/libreoffice-upgrade-update-latest/ +[12]: https://www.debugpoint.com/libreoffice-upgrade-update-latest/embed/#?secret=KINquNxuYI#?secret=FGij1s6Mfc