Open In App

How to install LibreOffice in Kali Linux?

Last Updated : 23 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

If you’re using Kali Linux and need a reliable office suite, installing LibreOffice in Kali Linux is a great choice. LibreOffice is an open-source office suite that includes a range of applications for word processing, spreadsheets, presentations, and more. This guide will walk you through the process of installing LibreOffice on Kali Linux, whether you’re using the terminal or a graphical interface. By following these steps, you’ll have LibreOffice set up on Kali Linux in no time, ready to handle all your office tasks.

Installation of LibreOffice in Kali Linux

A total of 2 methods are explained to install LibreOffice in Linux:-

Method 1: Using the APT package manager

Step 1: Update the package list

sudo apt update -y
image_2024-02-29_091426617
updating package list

Step 2: Install LibreOffice on Kali Linux

  • Once repositories are up to date, we will install LibreOffice using apt install command.
sudo apt install libreoffice libreoffice-gtk4
001-Installing-LobreOffice
Installing LibreOffice

Step 3: Verify installation

Once the installation is complete, you can search for LibreOffice applications in your menu.

libre-office-verification
verifying installation from applications menu.

Method 2: Using .deb package

Step 1: Download .deb package

  • In this step, we will download official deb package from LibreOffice's website. Go to link below.

Link: https://www.libreoffice.org/download/download

  • Select your operating system, for Kali Linux choose Linux(64-bit)(.deb) option from drop down menu.
  • Now click on Download button as shown below. This will download an archive file with extension .tar.gz to your system.
01-LibreOfficeWebsite
LibreOffice Website

Step 2: Extract the archive

  • Once downloading is completed, navigate to your downloads folder using cd command.
cd Downloads
  • We will extract the package using tar -xvf command.
tar -xvf LibreOffice*.tar.gz
  • This will extract the archive in new folder with same name as of the archive file.
001-Extracting-LibreOffice
Extracting LibreOffice .tar.gz file

Step 3: Navigate to the extracted directory

  • Installation packages are inside of DEBS folder.
  • Once extracted, navigate to extracted directory using cd command.
cd LibreOffice*_deb/DEBS
image_2024-03-02_121314612
Extracted directory

Step 4: Install .deb packages

  • Now, we will install all deb packages present inside of this directory to install LibreOffice using dpkg -i command.
sudo dpkg -i *.deb
installing-deb-libre-office
installing .deb packages

Step 5: Verify installation

  • Once the installation is complete, you can search for LibreOffice applications in your menu.
libre-office-verification
verifying installation from applications menu

Conclusion

Installing LibreOffice in Kali Linux is a straightforward process that provides you with a powerful office suite capable of handling a wide variety of tasks. By following the steps in this guide, you can easily install LibreOffice via the terminal on Kali Linux and start using it right away. Whether you're writing documents, creating spreadsheets, or preparing presentations, LibreOffice is a versatile tool that integrates seamlessly into your Kali Linux environment.

How-to-install-LibreOffice-in-Kali-Linux
install LibreOffice in Kali Linux

Next Article
Article Tags :

Similar Reads