How to share installed Steam games between users?

Hello, is there a way to set up Steam so that installed games on the system drive are usable between Linux users, so that each user doesn't have to, for example, install their own instance of TF2? This is how Steam works on Windows.
Solution
sudo mkdir /mnt/steam-library
sudo groupadd gamers
sudo chgrp gamers /mnt/steam-library/
sudo chmod 770 /mnt/steam-library/
sudo chmod g+s /mnt/steam-library/
sudo usermod -a -G gamers user1
sudo usermod -a -G gamers user2
Was this page helpful?