A while ago we learned how to create bootable ISO using dd command in Linux and Unix-like systems. As you may already know, the dd
command is one of the dangerous and destructive command. If you're not sure what you are actually doing, you might accidentally wipe your hard drive in minutes. The dd
command just takes bytes from if and writes them to of. It won't care what it’s overwriting, it won't care if there’s a partition table in the way, or a boot sector, or a home folder, or anything important. It will simply do what it is told to do. If you’re beginner, it is better to avoid using dd command. Thankfully, there is a simple GUI utility for dd command. Say hello to "Kindd", a graphical frontend to dd
command. It is free, open source tool written in Qt Quick. This tool can be very helpful for the beginners and who are not comfortable with command line in general.
The developer created this tool mainly to provide,
- a modern, simple and safe graphical user interface for dd command,
- a graphical way to easily create bootable device without having to use Terminal.
Install Kindd in Linux
Kindd is available in AUR. So if you're a Arch user, install it using any AUR helper tools, for example Paru or Yay.
To install Git version, run:
$ paru -S kindd-git
Or,
$ yay -S kindd-git
To install release version, run:
$ paru -S kindd
Or,
$ yay -S kindd
After installing, launch Kindd from the Menu or Application launcher.
For other distributions, you need to manually compile and install it from source as shown below.
Make sure you have installed the following prerequisites.
- git
- cmake
- pkg-config
- qt5-devel
- qt5-svg-devel
- qt5-declarative-devel
- qt5-quickcontrols2-devel
- qt5-svg
- qt5-quickcontrols
- qt5-quickcontrols2
- qt5-graphicaleffects
Once all prerequisites installed, git clone the Kindd project and build it using:
git clone https://github.com/LinArcX/kindd/
Go to the directory where you just cloned Kindd and compile and install it:
chmod +x ./build/tools/linux/sh/build.sh ./build/tools/linux/sh/build.sh build_release
Finally run the following command to launch Kindd application:
./build/tools/linux/sh/build.sh run_release
Kindd uses pkexec internally. The pkexec agent is installed by default in most Desktop environments. But if you use i3 (or maybe some other DE), you should install polkit-gnome first, and then paste the following line into i3 config file:
exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
Create bootable USB from ISO using Kindd in Linux
To create a bootable USB from an ISO, plug in the USB drive. Then, launch Kindd either from the Menu or Terminal.
This is how Kindd default interface looks like:
As you can see, Kindd interface is very simple and self-explanatory. There are just two sections namely List Devices which displays the list of available devices (hdd and Usb) on your system and Create Bootable .iso. You will be in "Create Bootable .iso" section by default.
Enter the block size in the first column, select the path of the ISO file in the second column and choose the correct device (USB drive path) in third column. Click Convert/Copy button to start creating bootable ISO.
Once the process is completed, you will see successful message.
Now, unplug the USB drive and boot your system with USB to check if it really works.
If you don't know the actual device name (target path), just click on the List devices and check the USB drive name.
Resource:
5 comments
And this is easier to use than the command line exactly – how? dd is a very powerful command, not to be used lightly. I am not sure that this graphical interface adds anything other than making it easier for rookie users to shoot themselves in the foot. Power ought to be used responsibly – this GUI does not encourage that – if anything, it does the opposite.
Kindd is for for newbies and who dislike CLI in general. Like you said, dd is easier. I prefer the command line way.
If a user is so timid and inexperienced that he or she is uncomfortable running “dd” in a terminal emulator, do you really think the user will manage to install Kindd in the manner described in this article?
Kindd is still early stage. I hope the developer and contributors will release native package soon to simplify the installation. And, yes it is bit difficult for beginners to compile and install from source as I described in the guide.
It would be interesting to integrate this software package into a basic linux distro, in order to turn this software into a bootable application.