bootUsb is a C++ tool for creating bootable USB drives from ISO files. It lists available disks on the system, allowing the user to choose one for creating the bootable drive, and then uses the dd
command to perform the operation.
Here's how you can adapt the "How to Use" section for your bootUsb
tool:
- Clone the repository:
git clone https://github.com/paulomunizdev/bootUsb.git
- Navigate to the bootUsb directory:
cd bootUsb
- Give permission to execute:
sudo chmod +x bootUsb
- Run bootUsb:
sudo ./bootUsb
Before compiling, ensure that you have a C++ compiler installed on your system.
Compile the source code using g++:
g++ -o bootUsb src/bootUsb.cpp
This will generate an executable named bootUsb
in the root directory of the project.
This project is licensed under the MIT License