added LibreOffice

This commit is contained in:
2026-04-04 18:19:19 -05:00
parent 70867a6735
commit f2b59d7ff2
2 changed files with 45 additions and 1 deletions

44
Software/LibreOffice.md Normal file
View File

@@ -0,0 +1,44 @@
# LibreOffice
LibreOffice is the global standard for Open-Source Office Software.
It is a cross-platform suite of software containing the following applications:
- Writer
- Document creation and editing. Similar to Word.
- Calc
- Spreadsheet work, similar to Excel.
- Impress
- Designing Presentations, similar to Powerpoint.
- Draw
- Diagram designer, similar to Visio, but also good for editing PDFs.
- Base
- Database frontend, similar to Access, can interact with an number of the most popular databases engines.
- Few others such a formula or chart designers, which are also integrated into other LibreOffice apps.
## Install
LibreOffice is installed by default on many distribution.
If it isn't you can probably use your system's graphical software manager to install it.
To install via command-line you can do the following:
### Flatpak (universal)
If you wish to install through flatpak ensure flatpak is setup, see [Flatpak](../Tools/Flatpak.md) for details if not.
```sh
flatpak install flathub org.libreoffice.LibreOffice
```
### Arch-based
```sh
sudo pacman -S libreoffice-fresh
```
### Debian/Mint/Ubuntu
```sh
sudo apt update
sudo apt install libreoffice
```
### Fedora
```sh
sudo dnf install libreoffice
```