Created
August 4, 2025 23:15
-
-
Save crnisamuraj/84854be06a37a19ec1f0d8278927c646 to your computer and use it in GitHub Desktop.
Bazzite setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create usershares group | |
grep -E '^usershares:' /usr/lib/group | sudo tee -a /etc/group | |
# Add current user to usershares group | |
sudo usermod -aG usershares $USER | |
# Enable the samba server service | |
sudo systemctl enable --now smb.service | |
# Dunno what this does but nothing works if you don't do this | |
sudo setsebool -P samba_export_all_rw=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment