【问题分析】产生 touch: cannot touch 'file1.txt': Permission denied 错误的原因是 因为 用户对 当前文件没有修改权限,所以需要授权!!!
使用命令 : cd../ 进入当前文件夹的父级目录,然后 执行命令:
sudo chmod -R 777 logs 【sudo chmod -R 777 文件夹名称(logs)】
- chmod 修改权限指令
- -R 对目前目录下的所有档案与子目录进行相同的权限变更
- 777 是所有用户都拥有最高权限
chmod 使用方式:chmod [-cfvR] [–help] [–version] mode file…
来源地址:https://blog.csdn.net/qq_43143025/article/details/127445017