Linux Office Software - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
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
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
- Text Editors - Text editors
- File Managers - File management
- ArchWiki Office Software: https://wiki.archlinux.org/title/List_of_applications/Office
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.