Clipsify

Share Drives and Folders in Ubuntu Server across the Network

You should already have Samba Windows File Sharing installed if you follow “How to Install Ubuntu Home Media Server“. If not use the following commands to install Samba Windows File Sharing:

sudo apt-get update
sudo apt-get install samba

To Restart Samba:

sudo service smbd restart

Create and share folders across your network:

Step 1: Create folder

cd /home/YourUserName
mkdir testfolder

Step 2: Change permission

chmod -R 777 /home/YourUserName/testfolder

Step 3: Share folder

Now you can access your folder through other computer in your window explorer.

Exit mobile version