From 2ae5a55018a6ce7bd81d6e59202a6be66f66e6c8 Mon Sep 17 00:00:00 2001 From: Amil Qustu Date: Thu, 19 Dec 2024 09:55:07 +0000 Subject: [PATCH] =?UTF-8?q?update=20docs/en/docs/Administration/faqs.md.?= =?UTF-8?q?=20=E7=BB=9F=E4=B8=80=E5=91=BD=E4=BB=A4=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0$=E7=AC=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/Administration/faqs.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/docs/Administration/faqs.md b/docs/en/docs/Administration/faqs.md index 776e3cae0..d42baadd5 100644 --- a/docs/en/docs/Administration/faqs.md +++ b/docs/en/docs/Administration/faqs.md @@ -151,7 +151,7 @@ If a software package conflict occurs, perform the following steps \(the softwar 2. Run the **dnf remove** command to uninstall the software package that conflicts with the software package to be installed. ```shell - dnf remove libevent-devel-2.1.11-2.oe1.aarch64 + $ dnf remove libevent-devel-2.1.11-2.oe1.aarch64 ``` 3. Perform the installation again. @@ -163,7 +163,7 @@ If a file conflict occurs, perform the following steps \(the file conflict in "S 3. Run the **dnf remove** command to uninstall the software package that does not need to be installed. ```shell - dnf remove docker-engine-18.09.0-100.aarch64 + $ dnf remove docker-engine-18.09.0-100.aarch64 ``` 4. Perform the installation again. @@ -175,13 +175,13 @@ If a software package is missing, perform the following steps \(the missed softw - Run the **dnf remove** command to uninstall the software package that depends on the **blivet-data-1:3.1.1-5.noarch** software package. ```shell - dnf remove python2-blivet-1:3.1.1-5.noarch + $ dnf remove python2-blivet-1:3.1.1-5.noarch ``` - Add the **\-\-allowerasing** parameter when upgrading the software package. ```shell - yum update blivet-data-1:3.1.1-5.noarch -y --allowerasing + $ yum update blivet-data-1:3.1.1-5.noarch -y --allowerasing ``` 3. Perform the upgrade again. @@ -193,7 +193,7 @@ If a software package is missing, perform the following steps \(the missed softw The **python3-edk2-devel.noarch** file conflicts with the **build.noarch** file due to duplicate file names. ```shell - # yum install python3-edk2-devel.noarch build.noarch + $ yum install python3-edk2-devel.noarch build.noarch ... Error: Transaction test error: file /usr/bin/build conflicts between attempted installs of python3-edk2-devel-202002-3.oe1.noarch and build-20191114-324.4.oe1.noarch @@ -225,7 +225,7 @@ When libiscsi-1.19.0-4 or later is downgraded to libiscsi-1.19.0-3 or earlier an Run the following command to uninstall the **libiscsi-utils** subpackage and then perform the downgrade: ```shell -yum remove libiscsi-utils +$ yum remove libiscsi-utils ``` ## Failed to Downgrade xfsprogs @@ -254,7 +254,7 @@ When xfsprogs-5.6.0-2 or later is downgraded to xfsprogs-5.6.0-1 or earlier and Run the following command to uninstall the **xfsprogs-xfs_scrub** subpackage and then perform the downgrade: ```shell -yum remove xfsprogs-xfs_scrub +$ yum remove xfsprogs-xfs_scrub ``` ## Failed to Downgrade elfutils @@ -280,7 +280,7 @@ In the preceding versions, the **eu-objdump**, **eu-readelf**, and **eu-nm** com Run the following command to uninstall the elfutils-extra subpackage and then perform the downgrade: ```shell -yum remove -y elfutils-extra +$ yum remove -y elfutils-extra ``` ## CPython/Lib Detects CVE-2019-9674: Zip Bomb -- Gitee