Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: [EN] [Solved]Flatpak non-root users getting Permission Denied  (Read 1803 times)

Offline terroreek

  • User
  • Posts: 202
[EN] [Solved]Flatpak non-root users getting Permission Denied
« 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)


« Last Edit: 2019/04/09, 05:22:12 by terroreek »

Offline terroreek

  • User
  • Posts: 202
Re: Flatpak non-root users getting Permission Denied
« Reply #1 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.