edit commands for rpm-ostree based systems

This commit is contained in:
HK L 2023-09-17 12:11:46 +00:00
parent 6ae4e1ddb4
commit aa4883f6a3

View file

@ -1,7 +1,7 @@
= Enabling the RPM Fusion repositories = Enabling the RPM Fusion repositories
Micah Abbott Micah Abbott
:revnumber: F36 and newer :revnumber: F36 and newer
:revdate: 2022-11-21 :revdate: 2023-09-17
:category: Managing Software :category: Managing Software
:tags: How-to, Repositories :tags: How-to, Repositories
:page-aliases: setup-rpmfusion.adoc :page-aliases: setup-rpmfusion.adoc
@ -144,22 +144,22 @@ For more information about this process and the problem it solves, please refer
+ +
[subs=+quotes] [subs=+quotes]
---- ----
$ sudo rpm-ostree install \ $ rpm-ostree install \
https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \ 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 https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
$ reboot $ systemctl reboot
---- ----
. To replace the versioned RPM Fusion repos that were previously installed with the unversioned repos: . To replace the versioned RPM Fusion repos that were previously installed with the unversioned repos:
+ +
[subs=+quotes] [subs=+quotes]
---- ----
$ sudo rpm-ostree update \ $ rpm-ostree update \
--uninstall rpmfusion-free-release \ --uninstall rpmfusion-free-release \
--uninstall rpmfusion-nonfree-release \ --uninstall rpmfusion-nonfree-release \
--install rpmfusion-free-release \ --install rpmfusion-free-release \
--install rpmfusion-nonfree-release --install rpmfusion-nonfree-release
$ reboot $ systemctl reboot
---- ----