265
this post was submitted on 30 Mar 2024
265 points (98.9% liked)
Linux
48033 readers
1260 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
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
As I understand it, there isn't really a canonical way to burn an ISO. Any tool that copies a file bit for bit to another file should be able to copy a disk image to a disk. Even shell built-ins should do the job. E.g.
cat my.iso > /dev/myusbstick
reads the file and puts it on the stick (which is also a file). Cat reads a file byte for byte (test by cat'ing any binary) and>
redirects the output to another file, which can be a device file like a usb stick.There's no practical difference between those tools, besides how fast they are. E.g. dd without the block size set to >=1K is pretty slow [1], but I guess most tools select large enough I/O sizes to be nearly identical (e.g. cp).
[1] https://superuser.com/questions/234199/good-block-size-for-disk-cloning-with-diskdump-dd#234204
Given that this is the crucial first step in installing Linux on a new computer, the fact that there is so much mystery and arbitrariness around it seems to me pretty revealing and symptomatic of Linux's general inability to reach ordinary folks.
Thanks for the information.
This isn't mystery, they're saying any old command that prints out or copies a file's contents will do.
If you need to use a tool that "just works" without growing your own understanding, there's plenty of GUI-centric bootable USB writers out there.
It's actually exactly the opposite case. Any method to copy data from one location to another will work, such as by using dd, or cat, or even just formatting the drive and using cp. If you don't want to deal with command line tools, there are many GUI tools that are literally just a couple buttons to press on all major operating systems. My personal preference for GUI liveUSB tools is Balena Etcher, or Fedora Media Writer. Both are incredibly easy to use and feature intuitive GUIs. There is no "mystery" or "arbitrariness" surrounding it at all, it's a pretty straightforward process. Copy data from one place to another and you're done. The only differences between the methods, as the previous comment said, is the speed of the transfer and some minor things that the end user has basically no reason to think about.
As far as its ease of installation and use goes, my tech illiterate father was able to install and use Linux Mint with zero problems and has been using it for years, so I'd say it does a pretty damn good job overall.
Wish I could agree with you on the underlying point.
My own anecdata is of normies who are absolutely resistant to the very idea of touching Linux because of its connotations of complexity. And really I don't think they're wrong.
Imagine what even this phrase must sound like to someone who has only ever used pre-installed Windows. Not being facetious.
My opinion remains that Linux could only benefit ifs distros would take hand-holding to its logical extreme and provide the actual Windows-Mac executables that make installing Linux a genuinely one-click experience. Last time I checked, Fedora did this. Pity it's Fedora and not Debian.