move some fedora software from server to software md

This commit is contained in:
2025-07-25 20:41:51 -04:00
parent dae4063f25
commit ca582333f1
2 changed files with 33 additions and 44 deletions

View File

@@ -1,7 +1,8 @@
# Apps
# Fedora Software
- [Apps](#apps)
- [Fedora Software](#fedora-software)
- [Common CLI Apps](#common-cli-apps)
- [Podman](#podman)
- [Gear Lever](#gear-lever)
- [VSCode](#vscode)
- [DNF](#dnf)
@@ -53,6 +54,8 @@
- [Ollama](#ollama)
- [UV](#uv)
- [Pipenv](#pipenv)
- [Docker](#docker)
- [Boxes](#boxes)
Flatpak installs are from Flathub unless otherwise noted.
@@ -124,6 +127,12 @@ sudo dnf install \
gcc
```
## Podman
```bash
dns install -y podman
```
## Gear Lever
I would recommend you install Gear Lever to manage App Images:
@@ -587,6 +596,8 @@ flatpak install org.gnome.Evolution
```bash
# Virtualization
sudo dnf group install --with-optional virtualization
sudo systemctl start libvirtd
```
## NVM
@@ -613,3 +624,22 @@ For starting ollama as a service, follow the link below:
## Pipenv
<https://pipenv.pypa.io/en/latest/installation.html#installing-pipenv>
## Docker
<https://docs.docker.com/engine/install/fedora/>
```bash
dnf -y install dnf-plugins-core
dnf-3 config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
systemctl enable --now docker
```
## Boxes
Virtualization at its boxiest.
```bash
flatpak install org.gnome.Boxes
```