I have a Ubuntu server at home with a static up and domains pointed to it.
I would like to allocate a folder to be used on the Home network as a shared folder where anyone on the network can read write and execute.
I have experience with SSHFS and a little bit with NFS and I’ve been trying to find information about how to do this but I haven’t found anything useful. Most of the systems that will be accessing the drive are windows. However I have some Linux machines that will be as well. So I assume I need fat32 formatting with the vfat filesystem.
My question mainly is what kind of software do I need to do this? I would like for it to show up under network places automatically.
Thank you in advance for the help!
Install
samba
apt install samba samba-common-bin
it is so simple to do too, edit one file, set password, restart daemon and your done. Thennano /etc/samba/smb.conf
in the[homes]
section change theyes
tono
like below to have the share read/writable, at the bottom of the file add your share. Then set the password for theuser_name
you want to be able to access the share withsmbpasswd -a user_name
and restartsamba
service smbd restart
. All commands run withsudo
in front of them in theTerminal
application.The formatting can be any file system you want, your machine takes care of the reading/writing to it,
samba
takes care of the sharing.