Skip to content

Instantly share code, notes, and snippets.

@crnisamuraj
Created August 4, 2025 23:15
Show Gist options
  • Save crnisamuraj/84854be06a37a19ec1f0d8278927c646 to your computer and use it in GitHub Desktop.
Save crnisamuraj/84854be06a37a19ec1f0d8278927c646 to your computer and use it in GitHub Desktop.
Bazzite setup
# 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