Has anybody gotten the latest Linux version for 0.10 run? I gave root ownership of chrome-sandbox and gave it permissions 4755.
When I try and run lss.AppImage all I get is "Trace/breakpoint trap (core dumped)". No other debug info is printed.
I'm running Ubuntu 24.04.
To anybody that comes across this I figured out a fix. There are two options.
1: Run the lss.AppImage with the --no-sandbox option.
2: In /etc/apparmor.d create a file and add the following information
# This profile allows everything and only exists to give the
# application a name instead of having the label "unconfined"
abi <abi/4.0>,
include <tunables/global>
profile cursor {path\to\appimage}/lss.AppImage flags=(unconfined) {
userns,
# Site-specific additions and overrides. See local/README for details.
include if exists <local/long-story-short>
}
Then run sudo systemctl reload apparmor.service