ubuntu下goland打开新的项目闪退的解决办法
安装最新的ubuntu2024.04版本的desktop,安装了goland作go的开发
遇到问题,刚从服务器clone的项目,使用goland打开,会闪退,再打开goland,会回到上一次正常打开的项目
经过多次测试,发现是无法自动创建.idea目录导致,我复制一个其他项目的.idea的目录进取后,可以正常打开,但相关项目是信息是错误的,这个不适合
后面,查看goland的日志,发现了一个错误信息
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_AnotheUExhKn/chrome-sandbox is owned by root and has mode 4755.
只要将给出的chrome-sandbox文件给予root用户并赋予4755权限,重新点击运行即可。
给报错信息给出的文件授权:sudo chown root ./goland/jbr/lib/chrome-sandbox && sudo chmod 4755 ./goland/jbr/lib/chrome-sandbox
参考文章:https://blog.csdn.net/qq_26898033/article/details/133696108