this post was submitted on 28 Mar 2021
17 points (90.5% liked)
Open Source
32727 readers
111 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
dd?
What?
it's commonly used utility
burning an os image to a usb is as simple as
sudo dd if=/path/to/input.iso of=/dev/? status=progress
where
/path/to/input.iso
is a full path to the location of the os image, and/dev/?
is the usb device you're writing to (you can find it using thelsblk
command, andstatus=progress
is to just see the progress barbe careful tho, if you enter a wrong drive in the destination, you can erase your os or whatever there is, which is why the utility is sometimes called disk destroyer :)
0h, okay, i forgot t0 say that i would prefer something with a gui since im pretty much a noob using the cli, can i format a usb to use it back a normal one with that, too? cos i have a really big one which hasnt been used for some time because of that
yes, you can format it using dd, but you'd have to manually partition it and install the file system etc
may i then recommend balena etcher for burning os images, it has a nice gui, worked perfectly every time i used it
and for formatting maybe gparted
both are very popular, and should be in the official repos of your os :)