How to Install LibreOffice in Ubuntu 24.04

Websolutionstuff | Feb-20-2025 | Categories : Other

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

How to Install LibreOffice in Ubuntu 24.04

 

Step 1: Update System Packages

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

 

Step 2: Install LibreOffice from the Official Repository

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.

 

Step 3: Verify the Installation

Once the installation is complete, check the installed version by running:

libreoffice --version

You can also launch LibreOffice from the terminal:

libreoffice

 

Step 4: Install the Latest LibreOffice Version

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

 

Step 5: Remove LibreOffice (If Needed)

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:

Recommended Post
Featured Post
How To Generate Barcode In Laravel
How To Generate Barcode In Lar...

In this tutorial, I will show you how to generate barcodes using the milon/barcode package. In this example, we wil...

Read More

Jun-06-2020

Laravel 8 Import Export CSV/EXCEL File Example
Laravel 8 Import Export CSV/EX...

In this article, we will see the laravel 8 import and export CSV/EXCEL file example. We will simple create imp...

Read More

Oct-01-2020

Laravel where and orWhere Condition Example
Laravel where and orWhere Cond...

In this article, we will see laravel where and orWhere condition example. we will give you a very simple example of...

Read More

Jan-11-2021

How To Auto Select Country Using IP Lookup In jQuery
How To Auto Select Country Usi...

In this article, we will see how to auto select a country using IP lookup in jquery. Here, we will learn about auto...

Read More

May-15-2023