I was getting the message :
1 |
Share not longer exists |
Since I couldn't find a way to overcome this issue I decided to export my share using NFS instead of SAMBA and now everything works fine.
Here is how I managed this in case it might be useful to someone :
1) Open the terminal application.
2) Create or update the exports file under /etc/exports :
1 2 |
<br> sudo vi /etc/exports<br> |
3) edit the file and add the folder you would like to share with the appropriate options :
1 |
/Volumes/MyDisk/MyMedia -alldirs -network 192.168.1.0 -mask 255.255.255.0<br> |
here I'm sharing all subfolders of the MyMedia folder to the 192.168.1.0 network.
4) You can check your export using the command :
1 |
showmount -e<br> |