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?
/home/pineapplelover ( @pineapplelover@lemm.ee ) 13•10 months agoVentoy ftw
boredsquirrel ( @boredsquirrel@slrpnk.net ) 13•10 months agoWhat?
Rufus just flashes ISOs to disks. On Linux you can doo that with
- udisksctl or dd
- Impression
- Fedora Media Writer
- KDE Iso Image writer
- Balena Etcher
But you are talking about something completely different and Ventoy does that.
ShortN0te ( @ShortN0te@lemmy.ml ) 3•10 months agoOr just cat file.img > /dev/…
boredsquirrel ( @boredsquirrel@slrpnk.net ) 5•10 months agoI think you should use dd for that?
ShortN0te ( @ShortN0te@lemmy.ml ) 3•10 months agoWhy? I am free to use whatever I want. This is not Microsoft Windows.
boredsquirrel ( @boredsquirrel@slrpnk.net ) 1•10 months agoWhat
qpsLCV5 ( @qpsLCV5@lemmy.ml ) 2•10 months agousing dd for that is outdated info that everyone keeps blindly parroting with zero understanding why. cat is simpler and works fine.
note: both cat and dd only work for this when the image is made in a compatible way, my linux isos always work fine but a windows iso didnt and needs a more specific tool.
ReversalHatchery ( @ReversalHatchery@beehaw.org ) English1•10 months agoIt is not outdated at all.
To be able to pipe to a disk, you have to open a root shell. That’s more dangerous than just running a single dd command with toot, as you can forget about it and run other commands that way too.
boredsquirrel ( @boredsquirrel@slrpnk.net ) 1•10 months agocat is for writing files, dd for writing disks.
Can you explain how this can work?
ShortN0te ( @ShortN0te@lemmy.ml ) 5•10 months agoNo, cat is not for writing files. Cat is for reading files and directing the data to standard output.
With “>” you are directing standard output to a file, in this case a blockdevice.
boredsquirrel ( @boredsquirrel@slrpnk.net ) 1•10 months agoCool, need to try that
tuna ( @tuna@discuss.tchncs.de ) 2•10 months ago/dev/sdX
is a file, and bothdd
,cat
can read files in full. You can even try something likezstd
to compress it too.One of the nice things about
dd
though is you can see the progress with--status=progress
rotopenguin ( @rotopenguin@infosec.pub ) English1•10 months agoRaspberry pi imager is supposed to be pretty good
vvv ( @vvv@programming.dev ) 8•10 months agodd if=image.img of=/dev/disk/flashdrive
is usually all you need Barzaria ( @Barzaria@lemmy.dbzer0.com ) English4•10 months agoif is short for input file if is short for output file
This dd command from the command line is what I use because it is built in and perfectly bare bones for my needs. I like to use the command flag --status=progress to show a status bar while duplicating the data. A word of caution: the dd, or ‘data duplicator’ program is sometimes known as the ‘destroy disk’ program because if you flash the iso file to the wrong disk/drive you can mess up the drive. Use the appropriate level of caution because there is no undo button. You can use the lsblk command to list the block devices on your machine and use the correct device. Quick instructions: use lsblk to list your block devices and locate your flash drive. If the flash drive is mounted (the /sdb/ will have something like /media/files if it is) you can unmount with $umount /path/to/sdb. Once the drive is unmounted you can use the dd program to duplicate the data (iso file) to your drive.
Barzaria ( @Barzaria@lemmy.dbzer0.com ) English5•10 months agoIf you want a GUI, I would use Balena Etcher. You might be able to use raspberri pi imager too.
Papamousse ( @Frederic@beehaw.org ) 4•10 months agoWell, on MX I’m using “MX Live USB Maker” which can flash any ISO on thumb drive, it’s a built-in tool.
Now I’m using Ventoy, you just put multiple ISO on the thumb drive and choose it when you boot the USB drive, it’s wonderful, no more “1 OS per drive”, you just take a 32GB USB drive and you can put 10 distro on it.
ulkesh ( @ulkesh@beehaw.org ) English4•10 months agoVentoy is great as others have said, and probably would do what you want since it has its own installer and is its own bootloader, and can boot isos loaded on the USB drive.
If you want something that works, in my experience, as well as Rufus, maybe take a look at Balena Etcher, too.
om1k ( @om1k@sopuli.xyz ) 3•10 months agoventoy is what has worked best for me
Corgana ( @Corgana@startrek.website ) 3•10 months agoBalena Etcher is what you want, though AFAIK if you’re making a Windows installer no Linux programs have the convenient options to disable TPM and online account etc that make Rufus so nice.
BaumGeist ( @BaumGeist@lemmy.ml ) 2•10 months agoI haven’t found a good GUI (Balena’s Etcher is cross platform, but the flatpak never worked for me)
dd
has never failed mesudo dd if= of= bs=4M status=progress conv=fsync
(double, triple and quadruple check that the output file,
of=
, is the correct device with multiple different commands before running this)Thanks everyone. I tried ventoy but it didn’t work straight away. I do like the idea of having a list of isos to pick from, but it might take more tweaking to get right.
I went with the boot loading tool in Fedora since I just wanted to flash mint to do a reinstall on my kids’ laptop
foremanguy ( @foremanguy92_@lemmy.ml ) 2•10 months agoThe principal alternative to Rufus is Balena etchter, but for me it works 1/5 times. But now I’m using Ventoy and… Just use it, it damn fucking good!
HubertManne ( @HubertManne@moist.catsweat.com ) 2•10 months agodarn I thought this was about my dream thing which would be a flashed boot loader on a drive where you had a folder you could add iso’s and it would automatically give you a list of isos to boot from.
kurcatovium ( @kurcatovium@lemm.ee ) English8•10 months agoSomething like Ventoy?
HubertManne ( @HubertManne@moist.catsweat.com ) 2•10 months agooms! this is exactly what I have been looking for.
HubertManne ( @HubertManne@moist.catsweat.com ) 2•10 months agoooh. imma go google that. thanks.
scratchandgame ( @scratchandgame@lemmy.ml ) Tiếng Việt1•10 months agoWhat have you used that’s worked well? Or, could I run Rufus on my linux machine with WINE?
A BLOODY STUPID IDEA!
Using Wine is just stupid enough.
dd is safe. I have used Balena’s Etcher 2 years ago but it seems the drive isn’t bootable in UEFI mode!
bloodfart ( @bloodfart@lemmy.ml ) 1•10 months agodd
Sometimes stuff won’t chain boot from within ventoy.
therealjcdenton ( @therealjcdenton@lemmy.zip ) English1•10 months ago