Setting up Samba share for a vmware OS
Sometimes it’s useful to be able to browse via the file system via a GUI. So on the advice of @AndyGale I installed Samba on my Ubuntu OS instance and created a share for the entire server. The first part of these instructions were from labs.boulevart.be.
- open the samba config
sudo nano /etc/samba/smb.conf - change “security=user” to “security=share”
- comment out “passdb backend = tdbsam” and “obey pam restrictions = yes”
- add a line saying “map to guest = bad user”
- comment out the lines beginning “passwd program =” and “passwd chat = “
Then we need to add a new share to the conf
[share]
path = /
read only = no
guest ok = yes