You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably because of the changes in AppArmor profiles:
$ bin/filecoin-station-linux-x86_64.appimage
[336526:0717/112836.874246:FATAL:setuid_sandbox_host.cc(158)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_filecoLZxxPn/chrome-sandbox is owned by root and has mode 4755.
[1] 336526 trace trap (core dumped) bin/filecoin-station-linux-x86_64.appimage
There is no /tmp/.mount* directory.
The text was updated successfully, but these errors were encountered:
The solution is to add an AppArmor profile. You need to add an /etc/apparmor.d/filecoin-station file, with the following contents (assuming that station is in /usr/local/bin/station.appimage:
abi <abi/4.0>,
include <tunables/global>
profile filecoin-station /usr/local/bin/station.appimage flags=(unconfined) {
userns,
include if exists <local/filecoin-station>
}
It looks like electron-userland/electron-builder#6095 in electron-builder. In the resolution it says to run the build on Debian 11+. I find it strange that you would need to run the build at a newer OS version just to set file permissions. Actions ubuntu-latest is still 22.04 at the time of writing.
Probably because of the changes in AppArmor profiles:
There is no
/tmp/.mount*
directory.The text was updated successfully, but these errors were encountered: