Ventoy 1.1.17 lands with BusyBox fixes, new distro support, and a low-level storage patch
The latest open-source multiboot USB tool release targets embedded Linux workflows, Arch derivatives, and a latent C buffer bug.
Ventoy 1.1.17 shipped today and landing roughly a month after 1.1.16. If you're running minimal Linux distributions or tinkering with enterprise ISOs, there's actually a handful of reasons to upgrade. The release focuses on upstream compatibility tweaks, new distro boot logic, and one low-level FATFS callback bug that probably would have gone unnoticed for years.
Ventoy remains one of the most-starred open-source boot tools on GitHub, sitting at 78,200 stars. You probably already know what it does: partition a USB drive once, dump ISOs into the data partition, and get a clean boot menu. The project's maintenance cadence has settled into something close to monthly since 2025. Sysadmins used to burn rescue DVDs for a living. Now we just copy two files and call it a day.
The Linux workflow changes
The biggest win for daily users is the BusyBox fdisk detection fix. Alpine Linux, OpenWrt, and other embedded distros ship BusyBox, which returns a non-zero exit code for fdisk -v even when the command works perfectly fine. Ventoy's install script relied on that exit code to bail out, effectively bricking partition operations on exactly the systems that need them most. The patch swaps the check for command -v fdisk, a POSIX-standard test that actually works. Merged from tiagoapimenta. Tiny patch. Big impact.
The second Linux-focused change repairs a regression in Ventoy2Disk.sh. A recent commit captured the working directory at startup, then later conditionally cds into the script's folder. The captured path no longer matched the actual toolchain, so utilities like vtoycli went missing when invoked from outside the extraction directory. The maintainer replaced $OLDDIR/tool/$TOOLDIR with $(pwd)/tool/$TOOLDIR evaluated after the directory change. An unnecessary trailing cd also got the axe.
New distro boot logic covers three releases. Athena OS, an Arch-based privacy and security distribution built on archiso, finally gets explicit support after UEFI/MBR configurations stalled at boot. EulerOS variants, the enterprise-class Linux distribution developed by Huawei, also got added to the supported list. Proxmox VE installations dropped into Ventoy's grub2 mode now boot cleanly after a fresh install instead of stalling at the bootloader.
Head here to see the full list of tested ISOs. Keep in mind that Ventoy claims 90%+ compatibility with DistroWatch.com entries, but niche BSD derivatives still occasionally trip over device enumeration quirks.
Under the hood
A latent C bug in diskio.c finally got patched. The FATFS disk_write callback preserves the MBR by skipping sector 0 when writing. When multiple sectors are written starting at sector 0, the code advanced the sector counter and count, but forgot to advance the actual write buffer by 512 bytes. The fix adds buff += 512 to keep the write pointer aligned. Unlikely to trigger in practice. Latent bug.
Secure Boot got an optimization pass that builds on the new UEFI certificate authority introduced in v1.1.14. Upgraders from older versions will need to re-enroll the secure boot key before the drive boots cleanly. GhostBSD 26.1, UOS releases, and the live injection logging pipeline all received their respective fixes. Language files got updated across the board.
However, at the same time, the patch for Proxmox VE's grub2 mode highlights a recurring headache: bootloader configuration drift between Ventoy's managed environment and a native OS install. It's a minor workflow snag, though IT professionals managing heterogeneous hardware will probably appreciate the fix.
tiagoapimenta submitted two PRs that both merged on release day. The maintainer, known as ventoy, actively reviewed both and shipped them within hours. The project's open development model clearly still runs on community patches moving faster than corporate release cycles.
Downloads are available at the official GitHub release page and mirrored on SourceForge. Linux users can grab the tarball, extract it, and run sudo bash Ventoy2Disk.sh -i /dev/sdX with root privileges. Windows users get a standard ZIP. A live ISO is also provided for a graphical installation experience. Keep in mind that upgrading from pre-1.1.14 requires you to manually re-enroll the secure boot key before booting.
