Skip to content
Follow
Ubuntu Linux

Install UNetbootin on Ubuntu 24.04: A Step-by-Step Guide

Richard
Written by
Richard
Dec 11, 2024 Updated Jul 13, 2026 2 min read
Install UNetbootin on Ubuntu 24.04: A Step-by-Step Guide
Install UNetbootin on Ubuntu 24.04: A Step-by-Step Guide

UNetbootin on Ubuntu 24.04 lets you easily make bootable USB drives for installing operating systems.

It’s a free program that helps you put an operating system’s installer, like Ubuntu, onto a USB stick.

You just pick the OS file and your USB drive, and UNetbootin does the rest. This lets you install Ubuntu 24.04 from a USB, just like you would from a DVD. You can download the Ubuntu 24.04 ISO file from the official ubuntu.com site.

⚡ Quick Answer

Install UNetbootin by adding its PPA and updating packages. Open the terminal and run “sudo add-apt-repository ppa:gezakovacs/ppa”, then “sudo apt-get update” followed by “sudo apt-get install unetbootin”.

Run UNetbootin without installing

You can also run UNetbootin without installing it. This version runs directly on Ubuntu 24.04, perfect for users who only need to create one bootable USB drive. Get the binary version from the UNetbootin download page for your computer, or use the `wget` command in the terminal to download the file directly.

To do that, visit the UNetbootin download page.

Download the binary version (the executable program file) for your system.

Using the terminal to download the UNetbootin file is another option. Run the `wget https://sourceforge.net/projects/unetbootin/files/UNetbootin/6.6b/unetbootin-linux-66b` command to perform this download for your Ubuntu 24.04 system.

💻Code
wget https://github.com/unetbootin/unetbootin/releases/download/702/unetbootin-linux64-702.bin

Next, run the command below to make the file executable, then run it.

🐧Bash / Shell
chmod +x ./unetbootin-linux*
sudo ./unetbootin-linux*

Use it to make a bootable drive.

UNetbootin application
UNetbootin application

Install UNetbootin on Ubuntu

To install UNetbootin on Ubuntu 24.04 for making bootable USB drives, first run `sudo add-apt-repository ppa:gezakovacs/ppa` in the terminal. This command adds UNetbootin’s software source, making the program ready for installation. After adding the source, update your system’s software list. This fetches the latest available package information, including the newest version of UNetbootin.

📝Good to Know
First, run the command below to add its personal PPA package repository (a dedicated source for software packages on Ubuntu) to Ubuntu.
🐧Bash / Shell
sudo add-apt-repository ppa:gezakovacs/ppa

Next, run the command below to update Ubuntu packages and install UNetbootin.

🐧Bash / Shell
sudo apt-get update
sudo apt-get install unetbootin

That should do it!

Conclusion:

So, UNetbootin is a really handy tool for making bootable USB drives on Ubuntu. Here are the key takeaways:

  • Versatility: It supports a variety of Linux distributions, making it useful for different users.
  • Ease of Use: Both the runnable and installable versions are straightforward to use.
  • Time-Saving: Quickly set up USB drives for installations or live sessions without complications.
  • PPA Support: The availability of a Personal Package Archive simplifies the installation process.
  • Accessibility: It can be run directly from the download link, freeing users from the need for installation if needed only once.

UNetbootin allows you to create a bootable USB drive from an ISO file. This helps you get more out of your operating system by letting you test or install new operating systems without altering your current setup. You can use UNetbootin to prepare a USB drive with Ubuntu 24.04 for an installation.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

Create a Bootable USB in Ubuntu Linux
Ubuntu Linux Create a Bootable USB in Ubuntu Linux
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04
How to Install Ubuntu Linux
Ubuntu Linux How to Install Ubuntu Linux

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *