Did some search on the net, not sure if this will work
https://noostyche-ru.translate.goog/blog/2021/08/26/flatpak-failed-to-create-a-mountpoint-for-revokefs-fuse/?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=ajax,nv,elem
The problem occurs due to incorrectly set permissions on the / var / tmp / directory , which flatpak actively uses . Solution:
sudo chmod 1777 /var/tmp/
Thus, writing, reading and executing become available to all users, while using sticky-bit - the user can delete only those files that he owns.
Checking the applied rights:
ln -ld /var/tmp/
Command output:
drwxrwxrwt 13 root root
The t at the end indicates the presence of a sticky-bit.
Note: In this example, the number 13 means the number of hard links , it may differ from distribution to distribution, this is normal.
The flatpak programs will now work correctly.