How To Install libreoffice-plasma on Ubuntu 20.04
Introduction
In this tutorial we learn how to install libreoffice-plasma on Ubuntu 20.04.
What is libreoffice-plasma
libreoffice-plasma is:
LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.
This package contains some minor Plasma integration (like AppData and “Create New…” integration) and a KDE/KF5 configuration backend. Task: kubuntu-desktop, kubuntu-full
Package: libreoffice-plasma Architecture: amd64 Version: 1:6.4.2-0ubuntu3 Priority: optional Section: universe/editors Source: libreoffice Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian LibreOffice Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 344 Depends: libreoffice-core (= 1:6.4.2-0ubuntu3), kio, libc6 (>= 2.14), libgcc-s1 (>= 3.0), libkf5configcore5 (>= 4.97.0), libkf5kiocore5 (>= 4.96.0), libqt5core5a (>= 5.6), libqt5gui5 (>= 5.6) | libqt5gui5-gles (>= 5.6), libqt5widgets5 (>= 5.6), libstdc++6 (>= 5), libuno-cppu3 (>= 4.4.0~alpha), libuno-cppuhelpergcc3-3 (>= 1.4.0), libuno-sal3 (>= 4.1.0~alpha), uno-libs-private, ure Replaces: libreoffice-kde5 (« 1:6.4.0~) Filename: pool/universe/libr/libreoffice/libreoffice-plasma_6.4.2-0ubuntu3_amd64.deb Size: 49496 MD5sum: d42a5fd57fcdd7effa6b4243b5b58e25 SHA1: f4ef92501f3a17dfa83d21bd494bd69453db0f49 SHA256: b643b0ba66c0f7be793f3591c221c77a0937e7d575b8c0099ca42009ae097cdc Homepage: http://www.libreoffice.org Description-en: office productivity suite – some Plasma integration LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.
This package contains some minor Plasma integration (like AppData and “Create New…” integration) and a KDE/KF5 configuration backend. Task: kubuntu-desktop, kubuntu-full
There are three methods to install libreoffice-plasma on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libreoffice-plasma Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libreoffice-plasma using apt-get by running the following command:
sudo apt-get -y install libreoffice-plasma
Install libreoffice-plasma Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libreoffice-plasma using apt by running the following command:
sudo apt -y install libreoffice-plasma
Install libreoffice-plasma Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libreoffice-plasma using aptitude by running the following command:
sudo aptitude -y install libreoffice-plasma
How To Uninstall libreoffice-plasma on Ubuntu 20.04
To uninstall only the libreoffice-plasma package we can use the following command:
sudo apt-get remove libreoffice-plasma
Uninstall libreoffice-plasma And Its Dependencies
To uninstall libreoffice-plasma and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove libreoffice-plasma
Remove libreoffice-plasma Configurations and Data
To remove libreoffice-plasma configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge libreoffice-plasma
Remove libreoffice-plasma configuration, data, and all of its dependencies
We can use the following command to remove libreoffice-plasma configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libreoffice-plasma
References
Summary
In this tutorial we learn how to install libreoffice-plasma package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.