---
title: "podman requries qemu-system on ubuntu"
description: "!https://askubuntu.com/questions/1490805/how-do-i-install-qemu-on-ubuntu-23-10"
date: 2024-06-13
published: true
tags:
  - container
  - containers
  - linux
  - podman
  - thought
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://askubuntu.com/questions/1490805/how-do-i-install-qemu-on-ubuntu-23-10" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-content">
      <div class="embed-card-title">External Link</div>
      <div class="embed-card-meta">askubuntu.com</div>
    </div>
  </a>
</div>


podman requires qemu-system on 


``` bash
❯ podman machine init
Looking up Podman Machine image at quay.io/podman/machine-os:5.1 to create VM
Extracting compressed file: podman-machine-default-amd64.qcow2: done
Error: exec: "qemu-img": executable file not found in $PATH
```

The fix to this for me was to install qemu-system before podman machine init.


``` bash
sudo apt update

sudo apt install qemu-system
```

