Skip to content

Instantly share code, notes, and snippets.

@Jobians
Created April 17, 2026 16:57
Show Gist options
  • Select an option

  • Save Jobians/d9064267afaaafbf2ae466a65e9da5d7 to your computer and use it in GitHub Desktop.

Select an option

Save Jobians/d9064267afaaafbf2ae466a65e9da5d7 to your computer and use it in GitHub Desktop.
Fix QEMU Debian No Internet (ens3 DOWN / DHCP issue)

Here’s a simple GitHub Gist version you can paste directly:

Fix QEMU Debian No Internet

Problem

No internet in Debian VM:

  • ping fails
  • DNS not working
  • ens3 is DOWN

Fix

Run these commands:

sudo ip link set ens3 up
sudo dhclient ens3

Done

Check:

ip a ping google.com

Now internet works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment