Ben Chuanlong Du's Blog

And let it direct your passion with reason.

Ways to Make a Bootable Flash Drive in Linux

Use Ventoy

Ventoy is the best graphical tool for making bootable flash drives currently.

Use the Command dd or cat

You can use

dd if=path_to_linux_image of=path_to_device bs=4M; sync

or

cat path_to_linux_image > path_to_device

to write a hybird Linux image into a flash drive. Note that you must …