Hi guys,
I have a Wetek Play running LibreELEC Krypton which contains two DVB-S2 receivers.
I would like to record the resulting recordings on my Synology NAS.
I have followed the wiki entry here:
Mounting network shares - OpenELEC
But I can't get it to work. the script creates something in multi-user.target.wants and what looks like a directory is added in the /storage directory but there is no link to the actual folder on the NAS. I have a text file in there and it doesnt show when I look in the new directory in /storage.
As you can see by what I am writing I am far from being a Linux expert. I would be grateful if someone could take a look at the mounting file and tell me where I have gone wrong or give me some suggestions.
The Synology NAS share is 'video' and I am trying to mount a folder within that share (video/RECORDING/Movies). Is this even possible? Can I only mount a share and not a folder within it?
i used to have TVHeadend running on the NAS but im just testing out TVHeadend 4.2 on the Wetek as 4.2 has not been compiled for the Synology. I, unfortunately, have no idea how to do that myself. Is TVHeadend 4.2 even worth this effort over TVHeadend 4.1?
The mounting script is:
# This is a mount script to mount the Synology TV Movies folder.
[Unit]
# The description should be used to explain what this servicefile is for
Description=mount Synology TV Movies folder
# if we do network mounts like here we *require* 'network-online.service' which checks if the network is online
Requires=network-online.service
# our scripts must start *after* 'network-online.service', on timeout and if 'network-online.service' fails we can not mount and this scripts fails too
After=network-online.service
# usually we mount networks shares because we want they avaible *before* XBMC starts. so XBMC has access to this mounts from beginning. Note: this slows down the boot!
Before=kodi.service
[Mount]
# The share we want mount
What=192.168.1.16:/video/RECORDED/Movies
# Where we want mount this share
Where=/storage/nas_tv_movies
# Any options you usually use with the "-o" parameter in the mount command
Options=
# filesystem type
Type=nfs
[Install]
# The target is used by 'systemctl enable <name_of_this_file.mount>' to link this service to a runlevel for starting on boot. usually 'multi-user.target' is ok here.
WantedBy=multi-user.target
Display More
Thank you for any advice.
Degsy