Skip to content

Instantly share code, notes, and snippets.

Created December 18, 2012 09:11
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 anonymous/4326473 to your computer and use it in GitHub Desktop.
Save anonymous/4326473 to your computer and use it in GitHub Desktop.
Mount Ubuntu Folder in Windows
# Mount Ubuntu Folder in Windows
apt-get install samba samba-common smbclient smbfs samba-doc
nano /etc/samba/smb.conf
'
[global]
security = share
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=65536 SO_SNDBUF=65536
workgroup = WORKGROUP
[share]
available = yes
path = /var/www # apache folder
browsable = yes
writable = yes
guest ok = yes
read only = no
create mask = 0777
directory mask = 2777
'
restart nmbd && restart smbd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment