#linux vscode 保存总提示“Retry as sudo”
Posted Jaycethanks
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#linux vscode 保存总提示“Retry as sudo”相关的知识,希望对你有一定的参考价值。
linux中,对不同路径下的文件,系统默认指定了不同的操作权限(读/写/执行),出现这个问题是由于文件的权限不足造成的。(路径为/opt/lampp/htdocs/Learnphp_jayce/hello.php)。
为其父级目录指定可读可写可执行权限:
cd /opt/lampp/htdocs
sudo chmod -R 777 LearnPHP_jayce/
当然也可以给单独文件指定权限:
cd /opt/lampp/htdocs/LearnPHP_jayce/
sudo chmod -R 777 hello.php
以上是关于#linux vscode 保存总提示“Retry as sudo”的主要内容,如果未能解决你的问题,请参考以下文章
Latex在VSCODE中编译报错`Recipe terminated with error. Retry building the project.
解决 VSCode 无法连接远程服务器,一直 Retry 的问题