Ikhwan Saputera

Setiap Waktu adalah Belajar, Setiap Tempat adalah Sekolah, Setiap Orang adalah Guru

Friday, April 05, 2019

How to Install Libre Office on Ubuntu, Xubuntu, Deepin and others

If you are an Ubuntu user, deepin xubuntu, or using the Debian version, of course you will get Libre Office software. This is the default program that already exists in the xubuntu installation. However, there is only libre office writer and libre office calc installed.

The complete components contained in the Libre Office are as follows:

Libre Office Base : database front-end
Libre Office Calc : spreadsheet editor
Libre Office Draw : diagrams and sketches
Libre Office Impress : presentation creator
Libre Office Math : equation editor
Libre Office Writer : word processor

To install all Libre office application packages, there are several ways you can do:

The first way is through the command in the terminal:
Install Libre Ofice all components at once:

Open Terminal and type the command below:

sudo apt-get install libreoffice libreoffice-gtk -y


Install Libre Office only certain components:
First you first install LibreOffice-gtk to integrate the desktop by typing in the terminal command below :
sudo apt-get install libreoffice-gtk

Next you just select the application component that you want to install with the following command below:

# Install Base
sudo apt-get install libreoffice-base -y
# Install Calc
sudo apt-get install libreoffice-calc -y
# Install Draw
sudo apt-get install libreoffice-draw -y
# Install Impress
sudo apt-get install libreoffice-impress -y
# Install Math
sudo apt-get install libreoffice-math -y
# Install Writer
sudo apt-get install libreoffice-writer -y

The second way is to install using the Ubuntu Software Center (USC)

You can install Libre office through the Ubuntu Software Center. Open (Applications Menu> Ubuntu Software Center). Type libreoffice in the search box, then you can install libre office components (Base, Calc, Draw, Impress, Math and Writer) by clicking on one of the components you want and clicking install.


No comments:

Post a Comment