跳至内容
龙讯旷腾 pwmat Wiki
用户工具
注册
登录
站点工具
搜索
工具
显示页面
过去修订
全部折叠/展开
反向链接
最近更改
媒体管理器
网站地图
注册
登录
>
中文
最近更改
媒体管理器
网站地图
您的足迹:
en:pwstudio:qa:q102
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
~~NOTOC~~ ===== q102: Docker install error on Rocky 8.10 ===== <WRAP lo> ==== Symptom ==== </WRAP> On Rocky 8.10, when you run the Docker install command from the guide, if you see a big block of errors like this (mentioning a conflict between podman-related packages and runc): <code bash> [lxkt@localhost ~]$ sudo dnf install -y docker-ce docker-ce-cli containerd.io Last metadata expiration check: 0:00:32 ago on Thu 02 Jul 2026 02:28:26 PM CST. Error: Problem 1: problem with installed package podman-4:4.9.4-1.module+el8.10.0+1815+5fe7415e.x86_64 - package podman-4:4.9.4-1.module+el8.10.0+1815+5fe7415e.x86_64 from @System requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-1.module+el8.10.0+1815+5fe7415e.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-1.module+el8.10.0+1825+623b0c20.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-12.module+el8.10.0+1843+6892ab28.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-13.module+el8.10.0+1871+e6fa1069.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-13.module+el8.10.0+1874+ce489889.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-15.module+el8.10.0+1880+8e896d1b.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-18.module+el8.10.0+1896+b18fa106.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-19.module+el8.10.0+1933+1fc610b1.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-20.module+el8.10.0+1948+4b5cd4a9.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-20.module+el8.10.0+2001+6a33db9f.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-22.module+el8.10.0+2006+320bb1e5.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-23.module+el8.10.0+2064+309a12a4.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-25.module+el8.10.0+40047+0c0a73f4.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-26.module+el8.10.0+40066+670062d8.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-27.module+el8.10.0+40068+51711525.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-28.module+el8.10.0+40087+cfe9c127.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-3.module+el8.10.0+1829+9bb2696f.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed - package podman-4:4.9.4-30.module+el8.10.0+40133+32c21f88.x86_64 from appstream requires runc >= 1.0.0-57, but none of the providers can be installed </code> (You don't need to read this whole block carefully — as long as you see the keywords ''podman'' and ''runc'' in the error, this is very likely the issue described here.) <wrap tip> Also note that in the example above, the command prompt is ''[lxkt@localhost ~]$'' — the ''lxkt'' here is just the login username on this particular example machine, not any kind of special command. The username in the prompt on your own machine is likely different, and that's completely normal — it has nothing to do with the error itself. </wrap> <WRAP em> ==== Cause ==== </WRAP> > Podman (which depends on runc) is already installed on the system, and it conflicts with the runc bundled with the Docker package you're trying to install. <WRAP em> ==== Fix ==== </WRAP> Run the following three commands in order (we recommend copying and pasting the whole block): <code bash> # Remove Podman and its dependencies sudo dnf remove -y podman podman-* buildah skopeo # Clean up any leftover runc conflicts sudo dnf remove -y runc # Reinstall Docker sudo dnf install -y docker-ce docker-ce-cli containerd.io </code> After running the third command, if the earlier error no longer appears, the issue is resolved — you can go back to the installation guide and continue with the next step (starting the Docker service). ~~DISCUSSION:off~~
en/pwstudio/qa/q102.txt
· 最后更改: 2026/08/03 15:37 由
127.0.0.1
页面工具
显示页面
过去修订
反向链接
全部折叠/展开
回到顶部