I have moved my media libraries to my Mac and I want to share them via SMB to my various Vero boxes.
Here is the output from smbclient on my Vero:
osmc@KodiKave:/mnt$ smbclient -L 10.7.10.29 -U kodi
Enter WORKGROUP\kodi's password:
Sharename Type Comment
--------- ---- -------
Concerts Disk
IPC$ IPC
kodi’s Public Folder Disk
Movies Disk
Music Disk
TVShows Disk
kodi Disk
SMB1 disabled -- no workgroup available
osmc@KodiKave:/mnt$
I then added the /etc/fstab entry as follows:
osmc@KodiKave:/mnt$ sudo cat /etc/fstab
# rootfs is not mounted in fstab as we do it via initramfs. Uncomment for remount (slower boot)
#/dev/vero-nand/root / ext4 defaults,noatime 0 0
//10.7.10.29/Movies /mnt/ServerMovies cifs x-systemd.automount,noauto,rw,iocharset=utf8,credentials=/home/osmc/.credentials,uid=osmc,gid=osmc,file_mode=0770,dir_mode=0770,vers=2.0 0 0
osmc@KodiKave:/mnt$
When I enter sudo mount -a, it returns to the command prompt.
When I try to cd into /mnt/ServerMovies, I get:
osmc@KodiKave:/mnt$ ls
ServerMovies
osmc@KodiKave:/mnt$ cd ServerMovies
-bash: cd: ServerMovies: No such device
osmc@KodiKave:/mnt$
Thank you.