44
submitted 2 weeks ago by [email protected] to c/[email protected]

I've been trying to find a linux programming similar to Rufus to flash images of OSes on a thumb drive.

Nothing from the listicles on the internet or the programs in flatpak have worked for me as well as Rufus on Windows.

What have you used that's worked well? Or, could I run Rufus on my linux machine with WINE?

you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 10 points 2 weeks ago

Personally I have a USB drive with Ventou and have been using that for a long time.

But before that I just did a dd. Although I seem to remember someone doing a benchmark and realizing that piping the file was faster. Here's what I mean by that:

In bash you have the echo command which prints text:

echo "Hello"

Will print Hello.

In bash you can send the output of a command to a file, so:

echo "Hello" > hello.txt

Will write Hello in the hello.txt file.

In bash you can use the cat command to read files:

cat hello.txt

Will print the Hello we wrote in that file earlier.

In Linux drives are files, so if your USB drive is in /dev/sdb (DON'T JUST BLINDLY COPY THIS) you can create an image of it like so:

cat /dev/sdb > usb.iso

But also the devices are writable, so you can flash an image to a disk by doing it the other way around:

cat image.iso > /dev/sdb 
this post was submitted on 12 Jun 2024
44 points (87.9% liked)

Linux

45417 readers
2011 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS