LibreOffice is a powerful and free office suite that includes Writer, Calc, Impress, and more. It is a great alternative to Microsoft Office and is widely used in Linux distributions. In this guide, I will show you how to install LibreOffice in Ubuntu 24.04 using simple terminal commands.
How to Install LibreOffice in Ubuntu 24.04
Before installing LibreOffice, it’s always a good practice to update the package list to ensure you get the latest version. Open the terminal and run"
sudo apt update && sudo apt upgrade -y
Ubuntu comes with LibreOffice in its default repository. You can install it using:
sudo apt install libreoffice -y
This command will install LibreOffice along with all necessary dependencies.
Once the installation is complete, check the installed version by running:
libreoffice --version
You can also launch LibreOffice from the terminal:
libreoffice
If you want the latest LibreOffice version, you can install it from the official PPA. First, add the PPA:
sudo add-apt-repository ppa:libreoffice/ppa -y
Then, update the package list and install LibreOffice:
sudo apt update && sudo apt install libreoffice -y
If you ever need to remove LibreOffice, use:
sudo apt remove --purge libreoffice* -y
sudo apt autoremove -y
This will remove LibreOffice and free up space on your system.
You might also like:
In this tutorial, I will show you how to generate barcodes using the milon/barcode package. In this example, we wil...
Jun-06-2020
In this article, we will see the laravel 8 import and export CSV/EXCEL file example. We will simple create imp...
Oct-01-2020
In this article, we will see laravel where and orWhere condition example. we will give you a very simple example of...
Jan-11-2021
In this article, we will see how to auto select a country using IP lookup in jquery. Here, we will learn about auto...
May-15-2023