We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e218c7 commit 31b0c40Copy full SHA for 31b0c40
doc/source/operations/rocky-linux-9.rst
@@ -706,10 +706,18 @@ Full procedure
706
707
sudo rpm --rebuilddb
708
709
- - Remove all EL8 packages:
+ - Make a list of EL8 packages to remove:
710
711
.. code:: console
712
713
- sudo rpm -qa | grep el8 | xargs dnf remove
+ sudo rpm -qa | grep el8 > el8-packages
714
+
715
+ - Inspect the ``el8-packages`` list and ensure only expected packages are included.
716
717
+ - Remove the EL8 packages:
718
719
+ .. code:: console
720
721
+ cat el8-packages | xargs sudo dnf remove -y
722
723
- You will need to re-create *all* virtualenvs afterwards due to system Python version upgrade.
0 commit comments