2026-04-17 08:27:46 +02:00
|
|
|
# Installations for new Fedora KDE instance
|
|
|
|
|
## RPM Fusion Tweaks
|
|
|
|
|
https://rpmfusion.org/ <br>
|
|
|
|
|
Configurations: https://rpmfusion.org/Configuration
|
|
|
|
|
### Configurations
|
2026-04-17 10:10:35 +02:00
|
|
|
```
|
|
|
|
|
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
|
|
|
|
sudo dnf config-manager setopt fedora-cisco-openh264.enabled=1
|
|
|
|
|
sudo dnf update @core
|
|
|
|
|
sudo dnf install rpmfusion-\*-appstream-data
|
|
|
|
|
```
|
2026-04-17 08:27:46 +02:00
|
|
|
### Multimedia
|
|
|
|
|
https://rpmfusion.org/Howto/Multimedia
|
2026-04-17 10:10:35 +02:00
|
|
|
```
|
|
|
|
|
sudo dnf swap ffmpeg-free ffmpeg --allowerasing
|
|
|
|
|
sudo dnf update @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
|
|
|
|
|
```
|
2026-04-17 08:27:46 +02:00
|
|
|
#### Intel (Recent CPU)
|
2026-04-17 10:10:35 +02:00
|
|
|
```
|
|
|
|
|
sudo dnf install intel-media-driver
|
|
|
|
|
```
|
2026-04-17 08:27:46 +02:00
|
|
|
### DVD stuff
|
2026-04-17 10:10:35 +02:00
|
|
|
```
|
|
|
|
|
sudo dnf install rpmfusion-free-release-tainted
|
|
|
|
|
sudo dnf install libdvdcss
|
|
|
|
|
```
|
2026-04-17 08:27:46 +02:00
|
|
|
### Firmware stuff
|
2026-04-17 10:10:35 +02:00
|
|
|
```
|
|
|
|
|
sudo dnf install rpmfusion-nonfree-release-tainted
|
|
|
|
|
sudo dnf --repo=rpmfusion-nonfree-tainted install "*-firmware"
|
|
|
|
|
```
|
2026-04-17 08:27:46 +02:00
|
|
|
|
|
|
|
|
## Packages
|
2026-04-17 10:10:35 +02:00
|
|
|
### Import keys & repos
|
|
|
|
|
```
|
|
|
|
|
sudo rpm --import https://downloads.1password.com/linux/keys/1password.asc
|
|
|
|
|
sudo sh -c 'echo -e "[1password]\nname=1Password Stable Channel\nbaseurl=https://downloads.1password.com/linux/rpm/stable/\$basearch\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=\"https://downloads.1password.com/linux/keys/1password.asc\"" > /etc/yum.repos.d/1password.repo'
|
|
|
|
|
sudo rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
|
|
|
|
|
sudo dnf config-manager addrepo --from-repofile=https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
|
|
|
|
|
sudo dnf config-manager addrepo --from-repofile=https://repo.librewolf.net/librewolf.repo
|
|
|
|
|
```
|
|
|
|
|
```
|
|
|
|
|
sudo tee /etc/yum.repos.d/JottaCLI.repo > /dev/null << 'EOF'
|
|
|
|
|
[jotta-cli]
|
|
|
|
|
name=Jottacloud CLI
|
|
|
|
|
baseurl=https://repo.jotta.cloud/redhat
|
|
|
|
|
gpgcheck=1
|
|
|
|
|
gpgkey=https://repo.jotta.cloud/public.gpg
|
|
|
|
|
EOF
|
|
|
|
|
```
|
|
|
|
|
#### Install packages
|
|
|
|
|
##### DNF
|
|
|
|
|
```
|
|
|
|
|
sudo dnf install fastfetch stow fish steam git gh nvim tldr btop 1password sublime-text mangojuice gamemode gamescope obs-studio jotta-cli
|
|
|
|
|
```
|
|
|
|
|
##### Flatpak
|
|
|
|
|
```
|
|
|
|
|
flatpak install com.discordapp.Discord io.github.Faugus.faugus-launcher com.adamcake.Bolt com.notesnook.Notesnook com.saivert.pwvucontrol com.github.tchx84.Flatseal org.kde.kdenlive it.mijorus.gearlever com.github.Matoking.protontricks com.vysp3r.ProtonPlus org.musicbrainz.Picard
|
|
|
|
|
```
|
|
|
|
|
#### Config
|
|
|
|
|
##### Jottacloud
|
|
|
|
|
```
|
|
|
|
|
run_jottad
|
|
|
|
|
jotta-cli help
|
|
|
|
|
```
|