美文网首页
报错:not executable. try chmod or

报错:not executable. try chmod or

作者: 海豚先生的博客 | 来源:发表于2021-01-06 21:38 被阅读0次

    Mac系统:npm run dev报错:path/bin/xxx not executable.try chmod or run with root

    1. cd path/bin/
    2. chmod -R 755 path/bin/
    3. 再次运行即可

    Linux chmod

    英文全拼:change mode,命令是控制用户对文件的权限的命令
    语法:chmod [-cfvR] [--help] [--version] mode file...


    image.png
    • u 表示该文件的拥有者,g 表示与该文件的拥有者属于同一个群体(group)者,o 表示其他以外的人,a 表示这三者皆是。


      image.png
    • r 表示可读取,w 表示可写入,x 表示可执行
    • -R : 对目前目录下的所有文件与子目录进行相同的权限变更(即以递归的方式逐个变更)
      chmod 777 file 所有权限
      chmod a-x file 删除file的所有用户的执行权限
      chmod +rwx file 给file的所有用户增加读写执行权限
      chmod 4755 filename 可使此程序具有 root 的权限。

    相关文章

      网友评论

          本文标题:报错:not executable. try chmod or

          本文链接:https://www.haomeiwen.com/subject/icbooktx.html