I’ve been testing this issue on a raspberry pi4 today running ubuntu 18.04 arm64 version.
There seems to be some issues with the security restrictions that snapd applies to the capturegrid4 snap.
For a snap package to access network shares or removable drives, it needs to declare support for the “removable-media” interface; capturegrid4 does this already.
With that, there should be two things to check:
-
Connect the removable-media interface to the snap.
Do this with the command:snap connect capturegrid4:removable-media
-
Make sure the network share is mounted under /media
But even when I did both those things, capturegrid4 still failed to save to a network share.
Eventually I did manage to get it working, by re-installing the snap package in --devmode, like this:
snap remove capturegrid4
snap install --devmode capturegrid4
(and then editing the capturegrid4_options.json again to change the photo download directory).
So Vlad, hopefully you can try those things and see if it works.
These security restrictions applied by the snapd system are pretty awkward, and I think probably its not working correctly under the raspberry pi (maybe under intel linux disto it works better).