Skip to content

Linux LibreOffice Guide

Mattscreative edited this page Dec 5, 2025 · 2 revisions

Linux LibreOffice Guide

Complete beginner-friendly guide to LibreOffice on Linux, covering Arch Linux, CachyOS, and other distributions including Writer, Calc, Impress, and office suite configuration.


Table of Contents

  1. LibreOffice Installation
  2. LibreOffice Writer
  3. LibreOffice Calc
  4. LibreOffice Impress
  5. Other Components
  6. Troubleshooting

LibreOffice Installation

Install LibreOffice

Arch/CachyOS:

# Install LibreOffice
sudo pacman -S libreoffice-fresh

# With all languages
sudo pacman -S libreoffice-fresh libreoffice-fresh-*

# Or stable version
sudo pacman -S libreoffice-still

Debian/Ubuntu:

sudo apt install libreoffice

Fedora:

sudo dnf install libreoffice

Launch LibreOffice

Start applications:

# Writer
libreoffice --writer

# Calc
libreoffice --calc

# Impress
libreoffice --impress

# Or from application menu

LibreOffice Writer

Create Document

New document:

  1. FileNewText Document
  2. Start typing
  3. Format text

Formatting

Text formatting:

  1. Select text
  2. Format toolbar
  3. Apply styles

LibreOffice Calc

Create Spreadsheet

New spreadsheet:

  1. FileNewSpreadsheet
  2. Enter data
  3. Use formulas

Formulas

Basic formulas:

=SUM(A1:A10)
=AVERAGE(B1:B10)
=IF(C1>100, "High", "Low")

LibreOffice Impress

Create Presentation

New presentation:

  1. FileNewPresentation
  2. Add slides
  3. Insert content

Slides

Manage slides:

  1. InsertSlide
  2. Format slide
  3. Add animations

Other Components

Draw

Vector graphics:

libreoffice --draw

Base

Database:

libreoffice --base

Math

Formula editor:

libreoffice --math

Troubleshooting

LibreOffice Not Starting

Check installation:

# Reinstall LibreOffice
sudo pacman -S libreoffice-fresh

# Check errors
libreoffice --verbose

Font Issues

Install fonts:

# Install Microsoft fonts
sudo pacman -S ttf-ms-fonts

# Refresh font cache
fc-cache -fv

Summary

This guide covered LibreOffice installation and usage for Arch Linux, CachyOS, and other distributions.


Next Steps


This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.

Clone this wiki locally