Created
August 26, 2018 07:25
-
-
Save baras/dcad72656d22ef06d375b02c28eea4a4 to your computer and use it in GitHub Desktop.
/etc/samba/smb.conf settings to share a folder on a Linux VirtualBox to be accessed from the Windows host.
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
Reference: https://superuser.com/a/258103 | |
Add this to the bottom of the file: | |
[www] | |
comment = another share | |
path = /var/www | |
guest ok = yes | |
browseable = yes | |
read only = no | |
create mask = 0777 | |
directory mask = 0777 | |
force create mode = 777 | |
force directory mode = 777 | |
force security mode = 777 | |
force directory security mode = 777 | |
force user = root | |
force group = root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment