关于Linux下Cursor的使用
在Ubuntu下安装Cursor,发现报错
hywing@moore:~$ sudo ./Cursor-1.2.1-x86_64.AppImage
[sudo] password for hywing:
dlopen(): error loading libfuse.so.2AppImages 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
于是安装libfuse2组件
sudo apt install libfuse2
再次运行还是报错
hywing@moore:~$ sudo ./Cursor-1.2.1-x86_64.AppImage
[0715/170419.884995:FATAL:electron_main_delegate.cc(288)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Trace/breakpoint trap
看提示root用户运行是要加上--no-sandbox
参数
sudo ./Cursor-1.2.1-x86_64.AppImage --no-sandbox