“Linux is for everyone! No need to learn anything new” lmao.
You should need to learn code to open a file imo.
Most distros you can just open it, like on Mac.
Comment on Mount an ISO in Linux?
marcos@lemmy.world 16 hours ago
# mount -o loop file.iso empty_dir
“Linux is for everyone! No need to learn anything new” lmao.
You should need to learn code to open a file imo.
Most distros you can just open it, like on Mac.
Of the two comments explanation how to do it, one using terminal and other UI, this one is shorter and will work on any Linux. The UI method is more complicated and will only work in a specific distro with specific DE.
So year, you should learn to code.
How so? You open the folder then click “search” after typing in what you are looking for
You call that “learning code”? What are you, an AI tech bro?
Is terminal code not…code?
The biggest put off to Linux is the absolute shit community it has
Is terminal code not…code?
N-no?
Its a program/command called mount that takes in command line arguments. The program is documented (in overwhelming detail) in the manual which is accessible online or using the program man (man mount)
The reason someone would recommened that command over the GUI is its universally installed on all Linux machines. OP said they were using Linux Mint. There are several Linux Mint distributions with different Desktop Managers (MATE/Cinnamon/Xfce) that all have different workflows of mounting an ISO file. mount is universal.
Commands are normally not considered “code” on their own. Someone who just runs commands on their computer to get a few operations done will normally not learn any programming constructs or concepts. If you’re doing shell scripting that usually crosses the line into code as you’d be using if statements, for loops, etc, which you normally don’t use if you’re just moving files around or whatever in the shell.
This is just invoking a command, it’s basically the same as double-clicking a .exe in Windows, just without a mouse. There’s no need to “learn coding” to do this. Coding involves complex logic; this doesn’t.
The biggest put off to Linux is the absolute shit community it has
Have you ever given it a shot? Most Linux users I’ve encountered are very friendly. Yes, there are some boards (like Arch forums) where people get pissy at noobs; however Arch isn’t a noob-friendly distro, in contrast to Mint/openSUSE etc.
Attitude matters as well; if you start off by shitting on stuff you have limited knowledge of, you won’t get a friendly response.
All new things will require some learning and getting used to. If you think that is crazy you should see how to get windows to only search for local files
Dude inise Linux, have a long time…windows is just easier. Then Mac after that and then Linux. The whole community wants everyone to switch to Linux but then screams at you because you don’t want to type 3 paragraphs in a terminal to get one program to open.
If you want to search only local files for windows. You just go that file and search.
Or you could search in file explorer.
Or use Everything, which is a lot fsster.
KRAW@linux.community 16 hours ago
You might need to add sudo, OP
timroerstroem@feddit.dk 11 hours ago
You probably know this already, but I thought I’d just mention here for OP and others: That’s what the
#at the beginning of the command implies (the command needs to be run as root), commands that can be run as a normal user are often denoted by$.apftwb@lemmy.world 31 minutes ago
Neat! I’ve been using Linux for years and I didn’t know that distinction. If it doesn’t work as a normal users, I enter
sudo !!