Arch Linux Office Software - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Arch Linux Office Software Guide
Complete beginner-friendly guide to office software on Arch Linux, including LibreOffice, document editors, spreadsheet applications, and presentation software.
Table of Contents
LibreOffice
Install LibreOffice
Install suite:
# 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
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:
# Install OnlyOffice
yay -S onlyoffice-bin
# Launch
onlyoffice-desktopeditors
WPS Office
Install WPS:
# Install WPS Office
yay -S wps-office
# Launch
wps
Calligra
Install Calligra:
# Install Calligra
sudo pacman -S calligra
# Launch
calligrawords
PDF Tools
PDF Viewers
Install viewers:
# Evince (GNOME)
sudo pacman -S evince
# Okular (KDE)
sudo pacman -S okular
# Zathura (lightweight)
sudo pacman -S zathura zathura-pdf-mupdf
PDF Editing
PDF tools:
# PDFtk
sudo pacman -S pdftk
# Poppler tools
sudo pacman -S poppler
# PDF manipulation
sudo pacman -S qpdf
Document Editors
Markdown Editors
Markdown tools:
# Typora
yay -S typora
# Mark Text
yay -S marktext
# ReText
sudo pacman -S retext
LaTeX
LaTeX suite:
# Install TeX Live
sudo pacman -S texlive-most texlive-lang
# Editor
sudo pacman -S texmaker
Troubleshooting
Font Issues
Install fonts:
# Install fonts
sudo pacman -S ttf-dejavu ttf-liberation
# Microsoft fonts
yay -S ttf-ms-fonts
Compatibility Issues
Install converters:
# Document converters
sudo pacman -S unoconv
Summary
This guide covered LibreOffice, alternative office suites, PDF tools, document editors, and troubleshooting.
Next Steps
- Arch Linux Multimedia - Multimedia
- Arch Linux Development Environment - Development
- ArchWiki Office Software: https://wiki.archlinux.org/title/List_of_applications/Office
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.