this post was submitted on 28 Aug 2024
20 points (100.0% liked)

Linux

47337 readers
1299 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi all, I've had a trawl around but can't quite find the answer I'm looking for. I'm currently on Windows with 5 separate physical storage drives with different purposes - OS, games, media, apps, random bullshit.

I've been trialling Linux on and off for ages and I think I've settled on Garuda for now. I'd like to have a similar style of separation under Linux if possible - in case I fancy a change of distro etc.

I'm assuming I can just leave my media drive as just a drive. My understanding is that apps/games are installed in the /usr/bin folder?

Is it possible or even worthwhile specifying a /usr/bin/apps and /usr/bin/games folder and pointing each folder to their respective drive? Or as both drives are the same make/model would it just be better to use them both as a single virtual volume?

Thanks in advance!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 10 points 3 weeks ago (1 children)

A lot of this is personal preference but I will suggest the following strategy. Mount all of your drives into subfolders of /mnt or /media (/mnt is usually used for more permanent storage but either is fine). Then symlink various folders on the system to this mount point. Like maybe you want your home folder downloads on one of these drives so /home/spawnsalot/Downloads is symlinkef to /mnt/drive1/Downloads.

This lets you pick and choose various places across your system that are actually on the additional drives but also the ability to see everything on the drives in one place.

Game installation location completely depends on the game itself. Some might install to /usr/bin, others to /opt, etc. You might have to dig around a little after install, move the folder, then symlink it like nothing ever happened.

[–] [email protected] 5 points 3 weeks ago

Since I haven't WELL ACKSHULLY'd anyone today: /mnt is for temporary user mounts, and /media is for removable storage like USB drives and stuff.

To be fully Linux Nerd(TM) compliant, you probably want to actually just mount the drives anywhere you want to mount the drives, because for some really goofy reason, there wasn't and isn't an Official(TM) filesystem location for mounting permanently attached storage.

Yeah I don't know either.