Yes there are. You can find the installer images for Ubuntu Desktop on arm64 in the daily builds:

Latest: https://cdimage.ubuntu.com/daily-live/current/

24.04 LTS: https://cdimage.ubuntu.com/releases/24.04/release/

22.04 LTS: https://cdimage.ubuntu.com/releases/22.04/release/

Note that these images are not officially supported. They should be stable, however, and they are created by the Ubuntu project

Answer from MinelsGO on askubuntu.com
🌐
Ubuntu Community Hub
discourse.ubuntu.com › project discussion › desktop
Ubuntu Desktop on ARM64: History, Benefits, and What’s Next - Desktop - Ubuntu Community Hub
March 24, 2025 - By Jean-Baptiste Lallement and Tobias Heider Introduction ARM64, the 64-bit architecture behind the chips in our smartphones, smart home devices or newer laptops, is rapidly reshaping the computing world. With tech giants like Apple switching to ARM-based silicon and Qualcomm rolling out laptop chips, it’s clear why ARM64 matters: it delivers a massive boost in performance, astonishing battery life and efficiency, as well as strong security features (like pointer authentication and memory tagg...
Discussions

No Ubuntu 24.04 LTS ISO for Arm64 (Desktop)?
Those ISOs are for specific devices. What device are you after? More on reddit.com
🌐 r/Ubuntu
43
18
June 8, 2024
ubuntu 20.04 desktop arm64
If it was a supported ISO, it'll get moved to http://old-releases.ubuntu.com/ when it's outdated, alas unofficial, even older flavor ISOs are just dropped when there are newer ISOs. focal dailies aren't generally produced anymore; as no more releases are scheduled.. thus if you're talking about a daily you won't find that. The last daily I see created on the ISO tracker was 2023-03-14.3 (ie. 3rd respin on 14th March 2023) More on reddit.com
🌐 r/Ubuntu
13
6
May 17, 2023
🌐
Ubuntu
ubuntu.com › download › server › arm
Ubuntu for ARM | Download | Ubuntu
Download Ubuntu Server for ARM with support for the very latest ARM-based server systems powered by certified 64-bit processors.
🌐
Ask Ubuntu
askubuntu.com › questions › 1538084 › is-there-an-arm-version-of-ubuntu-desktop-latest-version
arm64 - Is there an ARM version of Ubuntu Desktop (latest version)? - Ask Ubuntu
January 14, 2025 - The latest or current release right now is Ubuntu 24.10 or the 2024-October release. ... Find the answer to your question by asking. Ask question ... See similar questions with these tags. ... Why intent prediction needs more than an... ... 0 Why are Chromium and Firefox arm64/armhf latest versions only available in Ubuntu 18.04 bionic-updates repository?
🌐
XDA Developers
xda-developers.com › home › software and services › the newest ubuntu version ushers in arm64 support for early adopters
The newest Ubuntu version ushers in ARM64 support for early adopters
April 17, 2025 - If you want in on this new installer, hop over to the Ubuntu download page, scroll down until you see the cute icon with a puffin, then click the download button next to the "ARM 64-bit architecture" option.
🌐
Ubuntu Community Hub
discourse.ubuntu.com › project discussion › foundations
What’s new for generic ARM64 Desktop ISOs in 25.10 - Foundations - Ubuntu Community Hub
August 29, 2025 - In this week’s Ubuntu Engineering spotlight, we’re diving into the technical side of how our generic ARM64 Desktop ISO works out of the box on all sorts of arm64 desktop hardware including Qualcomm Snapdragon laptops. Plus, we’ll share our upcoming plans for Ubuntu 25.10!
Find elsewhere
Top answer
1 of 4
37

UPDATE 2: A non-public (not on their main website) release of the arm64 Desktop version is now available on the daily-live folder: https://cdimage.ubuntu.com/jammy/daily-live/current/jammy-desktop-arm64.iso

Your mileage may vary, but it could perhaps work outright as this other user has indicated.


Some were confused, here's a complete screencast of the process outlined below: https://www.youtube.com/watch?v=56n2q6-MXX8

  1. Download the ARM64 Server edition from: https://ubuntu.com/download/server/arm
  2. Install with the ISO when creating a new guest/vm in Parallels 17
  3. Update System sudo apt update && sudo apt upgrade then sudo reboot
  4. Login and install: sudo apt install ubuntu-desktop
  5. Reboot (sudo reboot)
  6. Parallels Tools Installation: two options
  • Use Menubar:

    1. Menubar → Actions → Install Parallels Tools
    2. Install via shell:
      cd /media/USERNAME/Parallels\ Tools
      sudo ./install
      sudo reboot
      
  • Use ISO: mount Parallels ARM64 tools ISO and install:

    • Note: initially I installed Parallels Tools before installing the graphical user interface, but if you install it after the installation of ubuntu-desktop or even kde-standard/full/whatever then copy paste, etc. functionality will also be installed.
    1. CD-ROM: "Connect image..."
    2. Navigate to /Applications/ and change to List view
    3. Expand Parallels Desktop.app/Contents/Resources/Tools/
    4. Select and Open prl-tools-lin-arm.iso
    5. Execute:
      sudo mount /dev/cdrom /media/
      cd /media/
      sudo ./install
      # allow it to install appropriate tools
      sudo reboot
      
  1. Success:

DOCKER:

There was a question below about whether or not Docker can work with Ubuntu 22.04 on Apple Silicon. The answer is YES. The catch or hang up that people are hitting is when they try to use "Docker Desktop" on Ubuntu (instead of directly on macOS). This tries to run a nested virtualization scenario and Apple does not have this instruction set available on the M1 series of Apple Silicon devices. The key, however, is to just use Docker itself with something like a tutorial from here: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04

You'll then notice that after you successfully set it up and run docker run hello-world that it does work. Furthermore you can do install distributions like Alpine and run them:

$ docker pull alpine
$ docker run -it alpine
/ # ls
bin    dev    etc    home   lib    media  mnt    opt    proc   root   run    sbin   srv    sys    tmp    usr    var
/ # exit
$ docker image ls
REPOSITORY    TAG       IMAGE ID       CREATED       SIZE
alpine        latest    3fb3c9af89a9   5 weeks ago   5.32MB
hello-world   latest    46331d942d63   7 weeks ago   9.14kB
$ docker system prune -a --volumes
WARNING! This will remove:
  - all stopped containers
  - all networks not used by at least one container
  - all volumes not used by at least one container
  - all images without at least one container associated to them
  - all build cache

Are you sure you want to continue? [y/N] y
Deleted Containers:
e02dce4144eccb4828a3775ec96c97c5741c69120981bf323732796ff2e4855f
72beba41f97505fe14532b0f700e6c1477986c35c656bac7500591194725e1ef

Deleted Images:
untagged: hello-world:latest
untagged: hello-world@sha256:80f31da1ac7b312ba29d65080fddf797dd76acfb870e677f390d5acba9741b17
deleted: sha256:46331d942d6350436f64e614d75725f6de3bb5c63e266e236e04389820a234c4
deleted: sha256:efb53921da3394806160641b72a2cbd34ca1a9a8345ac670a85a04ad3d0e3507
untagged: alpine:latest
untagged: alpine@sha256:4edbd2beb5f78b1014028f4fbb99f3237d9561100b6881aabbf5acce2c4f9454
deleted: sha256:3fb3c9af89a9178a2ab12a1f30d8df607fa46a6f176acf9448328b22d31086a2
deleted: sha256:4f4ce317c6bbf55719e49973d32d33ba456d7cb08693a6d6fb372690eacee23b

Total reclaimed space: 5.331MB
2 of 4
5
  1. Be on a M1 Mac - I'm using a Pro with 16gb RAM.
  2. Have Parallels Desktop installed - not from Mac app store in my case. I don't think the version downloaded from the Parallels site matters, I have the one above basic, but I think that just gets you more RAM.
  3. Download the Jammy Jellyfish Daily Build:
    • Direct: https://cdimage.ubuntu.com/jammy/daily-live/current/jammy-desktop-arm64.iso
    • Parent directory: https://cdimage.ubuntu.com/jammy/daily-live/current/
  4. Create new vm using the iso.
  5. I didn't go with the automatic install option from Parallels. Not sure if it works the other way. Installed, rebooted, boot sequence froze after it couldn't find cd/dvd. I think I hit enter and it worked, or I restarted it somehow.
  6. Performed the following that I saw from the another post on this page:
  • CD-ROM: "Connect image..."
  • Navigate to /Applications/ and change to List view
  • Expand Parallels Desktop.app/Contents/Resources/Tools/
  • Select and Open prl-tools-lin-arm.iso
  • Execute: sudo mount /dev/cdrom /media/ cd /media/ sudo ./install
  • allow it to install appropriate tools sudo reboot
  1. Worked for me!
  2. Now where are all the arm apps? Hopefully, they get ported over time.
  3. Side note, I tried really hard to get this working for Fedora 36, but couldn't get Parallels Tools to work.
  4. Bonus note, the speed of the system is much much faster using a M1 Mac vs 2020 mac mini with 32gb of RAM on x86 architecture. I figured they would be similar, but I was wrong. M1 is crushing it. Best of luck!
🌐
LinuxVox
linuxvox.com › blog › ubuntu-arm64-desktop
Unveiling the Ubuntu ARM64 Desktop: A Comprehensive Guide — linuxvox.com
It provides a user-friendly graphical ... and tools. The Ubuntu ARM64 desktop can run on a variety of ARM64 devices, such as the Raspberry Pi 4 and other ARM64-powered single-board computers....
🌐
UTM
mac.getutm.app › gallery › ubuntu-20-04
Ubuntu 22.04 | UTM
April 14, 2025 - Architecture: ARM64 · Memory: 4 GiB · Disk: 64 GiB · Display: GPU Accelerated · SPICE tools: Installed · Username: ubuntu · Password: ubuntu ·
🌐
Ubuntu
launchpad.net › ubuntu › noble › arm64 › ubuntu-desktop
ubuntu-desktop : arm64 : Noble (24.04) - Launchpad
arm64 · ubuntu-desktop · This package depends on all of the packages in the Ubuntu desktop system . It is also used to help ensure proper upgrades, so it is recommended that it not be removed. ubuntu-meta package in Ubuntu · • Take the ...
🌐
AWS Marketplace
aws.amazon.com › marketplace › pp › prodview-i5afwwktxiu6u
AWS Marketplace: Netspectrum's Ubuntu Desktop 20.04 LTS (arm64)
This product has charges associated with it for providing full-featured Ubuntu desktop feature in the cloud! Simple and secure connections over web browser, VNC or RDP. Multi-user and multi-sessions. Popular desktops (Xubuntu, Lubuntu, Ubuntu, Gnome) and rich apps (Firefox, Libra Office, GIMP, etc).
🌐
Phoronix
phoronix.com › news › Ubuntu-25.10-ARM64-Stubble
Ubuntu 25.10 ARM64 Desktop ISO Aims For Better Hardware Experience With "Stubble" - Phoronix
August 20, 2025 - With the Ubuntu 25.10 release in October they are aiming to have a better ARM64 experience with their generic desktop ISO thanks to a new improvement they have been working on called Stubble.
🌐
Thurrott
thurrott.com › home › blog › ubuntu 25.04 is now available with arm64 and bitlocker support
Ubuntu 25.04 is Now Available with ARM64 and BitLocker Support - Thurrott.com
April 18, 2025 - This is a big deal for those wishing to dual-boot Windows 11 and Linux: The Ubuntu 25.04 installer now offers BitLocker support, so you no longer have to decrypt encrypted disks before installing. ARM64 support.
🌐
Ubuntu
ubuntu.fan › en › docs › ref › hardware › arm64
ARM64 Devices - Ubuntu.Fan
April 23, 2026 - Ubuntu 26.04 provides full ARM64 (AArch64) architecture support, including both desktop and server ISO images.
🌐
AWS Marketplace
aws.amazon.com › marketplace › pp › prodview-yqy4kwemt52ak
AWS Marketplace: Netspectrum's Ubuntu Desktop 24.04 LTS (arm64)
This product has charges associated with it for providing full-featured Ubuntu desktop feature in the cloud! Simple and secure connections over web browser, VNC or RDP. Multi-user and multi-sessions for RDP connections. Default Ubuntu Gnome deskopt and rich apps (Firefox, Thunderbird, Libra ...
🌐
Ubuntu
launchpad.net › ubuntu › focal › arm64 › ubuntu-desktop-minimal › 1.450
1.450 : ubuntu-desktop-minimal : arm64 : Focal (20.04) : Ubuntu
arm64 · ubuntu-desktop-minimal · 1.450 · This package depends on all of the packages in the Ubuntu desktop minimal system. It is also used to help ensure proper upgrades, so it is recommended that it not be removed.
🌐
Ubuntu
cdimage.ubuntu.com › releases › noble › release
Ubuntu 24.04.4 (Noble Numbat)
Raspberry Pi Generic (64-bit ARM) preinstalled desktop image