SLES 15 zypper 和 yast 错误

SLES 15 zypper 和 yast 错误

我在 GCP 上创建了一个预定义的 SLES 15.1 Linux VM。

SUSEConnect、zypper 和 yast 功能不起作用。

我总是出现错误:“11-资源暂时不可用”

例如我运行以下命令:

# SUSEConnect -p sle-module-basesystem/15.1/x86_64

结果:

Registering system to registration proxy https://smt-gce.susecloud.net
Updating system details on https://smt-gce.susecloud.net ...
Activating sle-module-basesystem 15.1 x86_64 ...
-> Adding service to system ...
command 'zypper --non-interactive refs Basesystem_Module_x86_64' failed
Error: zypper returned (1) with 'Unexpected exception.
Unknown error reading from 'plugin:/susecloud?credentials=Basesystem_Module_x86_64&path=/services/1772'
History:
 - Receive: script died unexpectedly
 - [11-Resource temporarily unavailable]

Please file a bug report about this.
See http://en.opensuse.org/Zypper/Troubleshooting for instructions.'

请问有人能帮我解决这个问题吗?我需要在这个 SLES 中安装一些额外的软件包。

答案1

这是因为 lxml 配置文件的版本为 4.4.2。因此,请卸载并安装较新的版本 4.6.2,然后使用以下命令重新注册。

# pip freeze | grep lxml
# pip uninstall lxml
# pip install lxml
# /usr/sbin/registercloudguest --force-new
# zypper update

希望这可以帮助。

相关内容