mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-12-01 07:39:48 +00:00
Fix minor typos
This commit is contained in:
parent
2e8574247b
commit
d307d751db
1 changed files with 11 additions and 10 deletions
|
@ -106,12 +106,13 @@ Once the install is complete enter:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo rpmconf -a
|
sudo rpmconf -a
|
||||||
----
|
----
|
||||||
|
|
||||||
[NOTE]
|
[NOTE]
|
||||||
====
|
====
|
||||||
Some thirdparty software drops edited configuration files in `/etc/yum.repos.d/` and reverting those to original verison may disable updates for the software. Review configuration files in this directory carefully.
|
Some third party software drop edited configuration files in `/etc/yum.repos.d/` and reverting these files to their original versions may disable updates for the software.
|
||||||
|
Please remember to review configuration files in this directory carefully.
|
||||||
====
|
====
|
||||||
|
|
||||||
For more information you can refer to the man pages (`man rpmconf`).
|
For more information you can refer to the man pages (`man rpmconf`).
|
||||||
|
@ -128,7 +129,7 @@ You can see a list of packages with broken dependencies by typing:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf repoquery --unsatisfied
|
sudo dnf repoquery --unsatisfied
|
||||||
----
|
----
|
||||||
|
|
||||||
The list should be empty, but if this is not the case consider removing them as they are not likely to work.
|
The list should be empty, but if this is not the case consider removing them as they are not likely to work.
|
||||||
|
@ -137,7 +138,7 @@ You can see duplicate packages (packages with multiple versions installed) with:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf repoquery --duplicates
|
sudo dnf repoquery --duplicates
|
||||||
----
|
----
|
||||||
|
|
||||||
[NOTE]
|
[NOTE]
|
||||||
|
@ -153,7 +154,7 @@ To see a list of these packages do:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf list extras
|
sudo dnf list extras
|
||||||
----
|
----
|
||||||
|
|
||||||
If you see a package you do not need, or use, you can remove it with:
|
If you see a package you do not need, or use, you can remove it with:
|
||||||
|
@ -167,7 +168,7 @@ You can safely remove packages no longer in use with:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf autoremove
|
sudo dnf autoremove
|
||||||
----
|
----
|
||||||
|
|
||||||
[WARNING]
|
[WARNING]
|
||||||
|
@ -217,7 +218,7 @@ To rebuild the database, run:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo rpm --rebuilddb
|
sudo rpm --rebuilddb
|
||||||
----
|
----
|
||||||
|
|
||||||
[[sect-using-distro-sync-to-resolve-dependency-issues]]
|
[[sect-using-distro-sync-to-resolve-dependency-issues]]
|
||||||
|
@ -229,7 +230,7 @@ This will attempt to make your installed packages the same version in your curre
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf distro-sync
|
sudo dnf distro-sync
|
||||||
----
|
----
|
||||||
|
|
||||||
You can also use the `--allowerasing` option will remove packages with dependencies that can not be satisfied.
|
You can also use the `--allowerasing` option will remove packages with dependencies that can not be satisfied.
|
||||||
|
@ -237,7 +238,7 @@ Always review which packages will be removed before confirming this:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo dnf distro-sync --allowerasing
|
sudo dnf distro-sync --allowerasing
|
||||||
----
|
----
|
||||||
|
|
||||||
[[sect-relabel-files-with-the-latest-selinux-policy]]
|
[[sect-relabel-files-with-the-latest-selinux-policy]]
|
||||||
|
@ -249,7 +250,7 @@ To relabel SELinux on the system, run the following command and then reboot:
|
||||||
|
|
||||||
[source,bash]
|
[source,bash]
|
||||||
----
|
----
|
||||||
sudo fixfiles -B onboot
|
sudo fixfiles -B onboot
|
||||||
----
|
----
|
||||||
|
|
||||||
The boot process will likely take a long time, as it checks and fixes SELinux permission labels on all files in your system.
|
The boot process will likely take a long time, as it checks and fixes SELinux permission labels on all files in your system.
|
||||||
|
|
Loading…
Reference in a new issue