---
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-12
published: true
tags:
  - linux
  - podman
  - container
  - 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
```


!!! note

    This post is a <a href="/thoughts/" class="wikilink" data-title="Thoughts" data-description="These are generally my thoughts on a web page or some sort of url, except a rare few don&#39;t have a link. These are dual published off of my..." data-date="2024-04-01">thought</a>. It's a short note that I make
    about someone else's content online <a href="/tags/thoughts/" class="hashtag-tag" data-tag="thoughts" data-count=2 data-reading-time=3 data-reading-time-text="3 minutes">#thoughts</a>
