While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Oh dear - ARC Raiders was logging your private Discord chats [updated]
- Many more US states are planning or already have operating system age verification laws
- Ubuntu and Fedora devs comment on California's new Digital Age Assurance Act
- EA Javelin Anticheat job listing mentions future support for Linux and Proton
- Sony PlayStation reportedly moving away from PC ports
- > See more over 30 days here
Recently Updated
- Recommendations for portable monitor for Steam Deck?
- childermass - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - Introduce Yourself!
- hollowlimb - Proton/Wine Games Locking Up
- Caldathras - recently released super fun crpg - Sector Unknown
- Jarmer - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
I would like to plug an external drive (or, like in the pic, hot swap an internal drive in a 3.5 docker for 2.5 ssd's)..
...and I want the game autorunning..
Is that possible on Linux?
..low capacity SSd's or, if the game is less than 32GB, the idea is to use those really fast USB 3 flash drives that outperform the most electromechanical 2.5 hdd's
I really miss the beautiful Plug'n'Play simplicity of the good old days of the gaming consoles like the Sega Genesis or Snes.
And this is why I hate modern consoles...
I have a similar idea for my steam library..
For example for a USB Drive(the one I use mostly) to run a local script.sh just in case if you want to have the launcher located on your pc.
sudo nano /etc/udev/rules.d/11autorunusb.rules
ACTION=="add", SUBSYSTEM=="usb_device",RUN+="/usr/bin/local/script.sh"
But in case you want to go hot swap I guess is a bit more complicate something like this (havent test it)
create another /etc/udev/rules.d/22hotswap.rules:
# mount-devices
KERNEL=="sd[a-z][0-9]", ENV{ID_MODEL_ID}=="yourmodelid", ENV{ID_VENDOR_ID}=="yourvendorid", ACTION=="add", ENV{mount_options}="relatime", RUN+="/usr/bin/local/script.sh"