Skip to content

Instantly share code, notes, and snippets.

@thiagoguarnieri
Last active November 14, 2022 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagoguarnieri/96af440010fc1ddcbb4f75d2aad91117 to your computer and use it in GitHub Desktop.
Save thiagoguarnieri/96af440010fc1ddcbb4f75d2aad91117 to your computer and use it in GitHub Desktop.
create simple share in samba for OPL
sudo apt-get install samba cifs-utils
#create samba user
sudo smbpasswd -a myuser
#configure samba
mousepad /etc/samba/smb.conf
[global]
client min protocol = NT1
server min protocol = NT1
# Games ps2
[ps2usb]
comment = ps2 games
path = /media/thiago/PS2/
valid users = myuser
writeable = yes
browseable = yes
public = yes
guest ok = no
#restarting
/etc/init.d/smbd restart
sudo service smbd restart
sudo service nmbd restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment