--stable
which typically offers the app enough permissions to run normallystable
install with devmode
to be able to read files…or something/tmp
and /home
. Symlinks don't fix the problem. Instead the files need to be copied somewhere else, such as /var/tmp
/tmp
:mkdir /home/you/tmp sudo mount --bind /tmp /home/you/tmp/
/etc/fstab
:# <file system> <mount point> <type> <options> <dump> <pass> /tmp /home/you/tmp auto bind 0 3
sudo update-initramfs -u -k all