2
Please excuse eventually some mis-translated parts đŸ˜‰
The 2.xyW-Version with Hisilicon SoC supports the same features…
Anyway, to enable the recording:
- First you need an input signal and a basic configured encoding parameter set.
- Then you need to chose whether to enable access to either a SAMBA (minV3) or my favourite - because it's
almost easier than a windows SMB configuration on a Linux or Microsoft server system: NFS
- So, you need to take care about the NFS-Support of the server you are using (e.g., a RaspberryPi4/5 with a
proper SSD capacity or external eSATA or USB-Volume)
- The devices need to 'see' each other Encoder and recorder IP's should be in the same network or you need
to install proper routes between them.
We assume, that your IT/Network knowledge should be professional or you need to consult your IT techies.
To install an NFS-mountable Volume in a Linux-system we describe it for the actual RasbianOS (Debian-Trixie):
Open a terminal/console and enter:
sudo apt-get update
sudo apt-get install nfs-kernel-server
sudo mkdir /home/public
sudo chmod ugo+rwx /home/public makes it open for everyone
sudo nano /etc/exports
add this line:
/home/public *(rw,sync,no_subtree_check,all_squash)
Save it and reload:
sudo exportfs -ra
restart the server:
sudo service nfs-kernel-server restart
check the services running: