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
{{ message }}
This repository was archived by the owner on Aug 27, 2025. It is now read-only.
I ran your script and tried to run cursor, but nothing happened.. no output, anything?
Saw the file in /usr/local/bin/cursor was trying to call the AppImage.
Called the app image directly and got
dlopen(): error loading libfuse.so.2
AppImages require FUSE to run.
You might still be able to extract the contents of this AppImage
if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE
for more information
On Ubuntu
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 24.04.2 LTS
Release: 24.04
Codename: noble
I had to...
sudo apt update
sudo apt install fuse libfuse2
Still nothing.. running the app image directly I got
The setuid sandbox is not running as root. Common causes:
* An unprivileged process using ptrace on it, like a debugger.
* A parent process set prctl(PR_SET_NO_NEW_PRIVS, ...)
Failed to move to new namespace: PID namespaces supported, Network namespace supported, but failed: errno = Operation not permitted
[57284:0327/160838.574015:FATAL:zygote_host_impl_linux.cc(207)] Check failed: . : Invalid argument (22)
Trace/breakpoint trap (core dumped)
Editing the /usr/local/bin/cursor, I added --no-sandbox and it finally worked.
I ran your script and tried to run cursor, but nothing happened.. no output, anything?
Saw the file in
/usr/local/bin/cursorwas trying to call the AppImage.Called the app image directly and got
On Ubuntu
I had to...
Still nothing.. running the app image directly I got
Editing the
/usr/local/bin/cursor, I added--no-sandboxand it finally worked.