this post was submitted on 24 May 2024
388 points (82.8% liked)
Linux
48313 readers
1367 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
I’m a Linux dinosaur user since mid 00’s and I confirm that despite huge efforts to make it as seamless as possible, it still sucks today. The problem is that you even have different file pickers (that’s what xdg-desktop-portal tries to mitigate but some applications will do it the traditional way by including toolkit library and filepicker from it, or they will even implement their own), there’s a great freedom to how drives can be mounted and multiple systems to manage drive mounts. It’s managed by gvfs or kio or something else, the behavior is a little differently every time. There are attempts to handle all automatic mounts in /run/media and while most distros conform to that, some won’t.
What I would recommend is to
Good tips thank you!
The major difference for me was that drives are shown in the mnt folder
This is not intuitive but like much other, makes sense once you know it
This isn’t intuitive because you can mount anything (mostly) anywhere you want under any path. The whole Linux ecosystem never decided one standard path or mounting method. If you want a disk to be mounted under
/home/$USER/Games
where/home
is also mountpoint to something else, you are free to do so. Desktops automate it and expose UI controls, yet again some apps are from GNOME world, some other from KDE or else and they have different UX and way to expose mounted storage. And I agree it’s not ideal, especially for newcomers.Oh, and two more random tips:
df
,lsblk
ormount
can help checking out state of mounted filesystemsNice thank you!