Last active
November 14, 2022 20:13
-
-
Save thiagoguarnieri/96af440010fc1ddcbb4f75d2aad91117 to your computer and use it in GitHub Desktop.
create simple share in samba for OPL
This file contains 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
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