Product Features
...
External Storage
Network Storage
Set up a CIFS Mount Point on Linux
3min
To expand the storage pool for your enterprise, you must make a shared folder.
Before you complete the following steps, you must do the following:
- Set up a remote storage location.
- Ensure you have admin/root permissions to create shared folders.
You will first need to install Samba.
To install Samba:
- Open Terminal and enter the following commands to install Samba: sudo apt-get update sudo apt-get install samba
- Enter the following command to create a password for your Samba user: sudo smbpasswd -a <user_name>
To make a shared folder on Linux:
- From the Terminal, enter the following command to make the shared folder: mkdir /home/<user_name>/<shared_folder_name>
- Enter the following commands to make a backup copy of the smb.conf file before editing it. sudo cp /etc/samba/smb.conf ~ sudo nano /etc/samba/smb.conf
- Add following lines to the end of smb.conf to allow reading and writing to the shared folder: [<folder_name>] path = /home/<user_name>/<shared_folder_name> valid users = <user_name> read only = no
- Enter the following commands to apply the changes to smb.conf by restarting Samba and checking the file for syntax errors: sudo service smbd restart testparm
After you successfully set up a shared folder, you can Mount External Storage in Litmus Edge.