Issue
yum update
returns on of the following errors:
kmod-lve requires kernel(bpf_trace_run12) = 0xa1d22df3, but none of the providers can be installed
kernel(oops_in_progress) = 0x299b2b01 is needed by (installed) kmod-lve-1:2.0-49.el7h.x86_64
Environment
- CloudLinux 8
- CloudLinux 7 Hybrid
Solution
Ensure that only the latest version of kmod-lve
is installed and remove the oldest ones
1- Check installed packages
# rpm -qa | grep kmod-lve
kmod-lve-2.0-35.el8.x86_64 <=== old
kmod-lve-2.0-37.el8.x86_64 <=== old
kmod-lve-2.0-38.el8.x86_64 <=== old
kmod-lve-2.0-47.el8.x86_64 <=== latest
2- Remove old packages
# yum remove kmod-lve-2.0-35.el8.x86_64
# yum remove kmod-lve-2.0-37.el8.x86_64
# yum remove kmod-lve-2.0-38.el8.x86_64
3- Re-run the update process
# yum update
and install "dracut-squash" package (in case of Hybrid installation):
# yum -y install dracut-squash
If it does not help:
1- Remove the outdated packages from rpmdb only and proceed with the update:
# rpm -e --nodeps --justdb kmod-lve-2.0-35.el8.x86_64
# rpm -e --nodeps --justdb kmod-lve-2.0-37.el8.x86_64
# rpm -e --nodeps --justdb kmod-lve-2.0-38.el8.x86_64
2- Re-run the update process
# yum update
Cause
Outdated kmod-lve modules
Comments
0 comments
Please sign in to leave a comment.