Software⏱️ 3 min read📅 2026-06-11

How to Fix: Error while installing OpenVZ kernel using yum in Fedora 17

Error installing OpenVZ kernel on Fedora 17 using yum. Systemd conflict with vzkernel.

Quick Answer: Try running rpm -Va --nofiles --nodigest to resolve the issue.

The error message indicates that there is a conflict between systemd and vzkernel-2.6.32-042stab072.10.i686, which affects the installation of OpenVZ kernel on Fedora 17.

This issue can be frustrating as it prevents the user from completing the installation process, and resolving it requires careful analysis and troubleshooting.

💡 Why You Are Getting This Error

  • The primary reason for this error is that systemd has become the default init system in Fedora 17, replacing upstart. OpenVZ kernel relies on upstart for initialization, causing a conflict.
  • Another possible cause could be that the mkinitrd command is not properly installed or configured.

✅ Best Solutions to Fix It

Resolving systemd conflict by disabling systemd

  1. Step 1: Step 1: Disable systemd using the following command: systemctl disable systemd.service
  2. Step 2: Step 2: Set systemd to be started only when booting the system, using the following command: systemctl enable systemd@multi-user.target
  3. Step 3: Step 3: Verify that systemd is not running by checking the system logs: journalctl -u systemd
  4. Step 4: Step 4: Reinstall vzkernel package with the --skip-broken option: yum install vzkernel --skip-broken

Resolving mkinitrd command issue

  1. Step 1: Step 1: Install mkinitrd using the following command: yum install mkinitrd
  2. Step 2: Step 2: Verify that mkinitrd is properly installed by checking its version: rpm -q mkinitrd
  3. Step 3: Step 3: Update the OpenVZ kernel package to include mkinitrd, using the following command: yum update --skip-broken vzkernel

✨ Wrapping Up

To resolve the error and successfully install OpenVZ kernel on Fedora 17, follow one of the above methods. After resolving the conflict, you can reattempt the original installation process using the 'yum install vzkernel' command.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions