Skip to content

Linux Office Software

Mattscreative edited this page Dec 5, 2025 · 2 revisions

Linux Office Software Guide

Complete beginner-friendly guide to office software on Linux, covering Arch Linux, CachyOS, and other distributions including LibreOffice, document editors, spreadsheet applications, and presentation software.


Table of Contents

  1. LibreOffice
  2. Alternative Office Suites
  3. PDF Tools
  4. Document Editors
  5. Troubleshooting

LibreOffice

Install LibreOffice

Install suite:

# Arch/CachyOS
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

LibreOffice Components

Components:

  • Writer: Word processor
  • Calc: Spreadsheet
  • Impress: Presentations
  • Draw: Vector graphics
  • Base: Database
  • Math: Formula editor

Launch LibreOffice

Start applications:

# Writer
libreoffice --writer

# Calc
libreoffice --calc

# Impress
libreoffice --impress

# Or from menu

Alternative Office Suites

OnlyOffice

Install OnlyOffice:

# Arch/CachyOS
yay -S onlyoffice-bin

# Launch
onlyoffice-desktopeditors

WPS Office

Install WPS:

# Arch/CachyOS
yay -S wps-office

# Launch
wps

PDF Tools

PDF Readers

Install readers:

# Evince (GNOME)
sudo pacman -S evince

# Okular (KDE)
sudo pacman -S okular

# Zathura
sudo pacman -S zathura zathura-pdf-mupdf

PDF Editing

Install tools:

# PDFtk
sudo pacman -S pdftk

# PDF manipulation
sudo pacman -S poppler

Document Editors

Markdown Editors

Install editors:

# Typora
yay -S typora

# Mark Text
yay -S marktext

Troubleshooting

LibreOffice Issues

Check installation:

# Check packages
pacman -Q | grep libreoffice

# Reinstall
sudo pacman -S libreoffice-fresh

Summary

This guide covered office software for Arch Linux, CachyOS, and other distributions, including LibreOffice, alternatives, and PDF tools.


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