This is an old revision of the document!
HyprSpace is a WolfRecorder feature that lets you extend the storage space used for user-exported camera video clips beyond the default root filesystem.
By default, all exported video clips are saved in a reserved area inside the root filesystem (/).
When HyprSpace is enabled, these exported files can be stored on any other storage location, for example:
The underlying storage type does not matter as long as it is properly mounted in the system.
The feature is enabled via a checkbox in “System settings” named “User exported videos in HyprSpace”.
After HyprSpace is activated:
The “Storages” module shows the HyprSpace as “Storage of user exported videos”.
The “System info” module start display information about HyprSpace storage capacity.
All user-exported video clips are automatically stored in the alternative mount point /hyprspace.
mkdir /hyprspace
mkdir /hyprspace/recdl chmod 777 /hyprspace/recdl
To move previously exported user videos to the new HyprSpace location, run:
mv /usr/local/www/apache24/data/wr/howl/recdl/* /hyprspace/recdl/
Mount a new UFS disk:
mkdir /hyprspace newfs -U /dev/da10 mount /dev/da10 /hyprspace mkdir /hyprspace/recdl chmod 777 /hyprspace/recdl
Mount an NFS share:
mkdir /hyprspace mount 192.168.0.12:/mnt/share /hyprspace/ mkdir /hyprspace/recdl chmod 777 /hyprspace/recdl
Mount a ZFS filesystem:
zpool create hyprspace /dev/da10 mkdir /hyprspace/recdl chmod 777 /hyprspace/recdl