Goland # Ubuntu(WSL2) # Unable to save settings: Failed to save settings...(屡试不爽)

问题:

 Goland 配置 ubuntu(WSL) 22.04 开发环境时,Edit Configurations... 后 goland 界面提示 “Unable to save settings: Failed to save settings. Please restart Goland IDEA”。

原因分析:

之所以无法保存 Edit Configurations... 是因为当前用户对 .idea 文件没有写入权限。

解决办法如下:

步骤一:cd 到 Goland 打开的工程目录,并使用命令:ll 查看工程目录下的所有文件(隐藏文件和非隐藏文件),如下图所示:

 Goland # Ubuntu(WSL2) # Unable to save settings: Failed to save settings...(屡试不爽)_第1张图片

步骤二: 从上图查询结果可看到工程目录下的 .idea 文件;

步骤三:执行下述命令更改 .idea 文件写入权限;

sudo chmod -R 777 .idea

问题成功解决!

你可能感兴趣的:(Linux,操作系统,intellij-idea,java,ide)