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 Aug 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 for Ubuntu 24.04 turns a regular USB flash drive into a bootable installer for your PC. The free tool copies your operating system files onto the drive so you can install a new system without needing a physical disc.

You need the Ubuntu 24.04 ISO installation file downloaded from the official ubuntu.com site before you start the setup process. Pick your ISO file and your USB drive inside the program, and let the software handle the transfer.

⚡ 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

Running the tool without a full installation works well if you only need to create a single drive. Grab the binary file directly from the UNetbootin download page. Alternatively, use the `wget` command in the terminal to fetch 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 remains an 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 launch the utility.

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

Proceed to build a bootable drive.

UNetbootin application
UNetbootin application

Install UNetbootin on Ubuntu

Installing UNetbootin on Ubuntu 24.04 for making bootable USB drives requires running `sudo add-apt-repository ppa:gezakovacs/ppa` in the terminal first. This command adds the software source, making the program ready for installation. After adding the source, refresh the system software list to fetch the latest available package information, including the newest version of UNetbootin.

Run the command below to add the Personal Package Archive (a dedicated third-party software source for Ubuntu) to your system.

🐧Bash / Shell
sudo add-apt-repository ppa:gezakovacs/ppa

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

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

That completes the installation process.

Conclusion:

UNetbootin serves as a reliable utility for building bootable USB drives on Ubuntu. Review these 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 the creation of a bootable USB drive from an ISO file. Testing or deploying new operating systems happens without altering the current setup. Prepare a USB drive featuring Ubuntu 24.04 for deployment using this workflow.

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 *