Siduction Forum

Siduction Forum => Software - Support => Topic started by: terroreek on 2019/04/07, 18:40:19

Title: [Solved]Flatpak non-root users getting Permission Denied
Post by: terroreek on 2019/04/07, 18:40:19
Hi All,
I have two siduction installs and when I try to run a flatpak application as a regular user I get the following error;error: open(O_TMPFILE): Permission denied.
I think the problem is I dont have any flatpak cache files  or folders in /var/tmp/  when I run an strace I get the following error. 

openat(AT_FDCWD, "/var/tmp", O_RDWR|O_EXCL|O_CLOEXEC|O_TMPFILE, 0600) = -1 EACCES (Permission denied)


Title: Re: Flatpak non-root users getting Permission Denied
Post by: terroreek on 2019/04/09, 05:21:58
I figured it out, I was missing write permissions to /var/tmp, after changing the permissions from 755  (drwxr-xr-x) to 777 ( drwxrwxrwx) I was able to successfully fix the problem.