Error: The SUID sandbox helper binary was found, but is not configured correctly

Error: The SUID sandbox helper binary was found, but is not configured correctly

很抱歉,我只是粘贴了一个错误代码,但我不知道还能尝试什么。我查看了该站点上的所有指南,但没有找到与我的问题完全相符的内容。我在 windows 10 上为项目“Zettlr”使用 ubuntu 子系统。这是我在 运行ning 'yarn start'

时得到的错误代码
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 node_modules/electron/dist/chrome-sandbox is owned by root and has mode 4755.
Done in 17.85s.

我正在尝试 运行 这个,但它要我更改访问权限和所有权。 chmod 没有效果(我知道这是由于 windows 存储系统造成的)但我不知道如何让这个程序正确地进入 运行。我也 运行 chown。从我的统计检查来看,该文件的 chmod 模式是 777,所以它应该是可以访问的。任何人都可以指导我找到这方面的指南,或者解释一下我能做什么吗?

听起来您正在使用的文件位于 NTFS 卷上,安装在 /mnt 下的某处。将您的项目移至本机 Linux 分区,例如 $HOME/var/opt

chmod 及其朋友(chgrpchown)都应该在本机 Linux 卷上 100% 工作。