linux fedora 错误——权限被拒绝

发布于 2024-11-11 08:07:21 字数 86 浏览 2 评论 0原文

我在使用 ./newmkapp 命令时在 linux fedora 中收到权限被拒绝错误。错误消息是 -- bash: ./newmkapp: 权限被拒绝..

I am getting permission denied error in linux fedora while using ./newmkapp command. The error message is -- bash: ./newmkapp: Permission denied..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独孤求败 2024-11-18 08:07:21

检查您的文件权限

ls -l

如果

-rwxr-xr-x   1 jcpennypincher  staff       55  5 Jul  2010 newmkapp

您不是所有者,则可以使用它

chown username:username newmkapp

来更改所有权,或者如果您不是所有者或属于拥有该文件的组,则可以使该文件可由其他人执行。

chmod 755 newmkapp

check your file permissions with

ls -l

It should look something like this

-rwxr-xr-x   1 jcpennypincher  staff       55  5 Jul  2010 newmkapp

if you are not the owner you can use

chown username:username newmkapp

to change ownership, or you can make the file executable by other if you are not the owner or in the group that owns the file.

chmod 755 newmkapp
冷清清 2024-11-18 08:07:21

比数字权限更容易记住:

chmod a+x newmkapp

瞧;)

Easier to remember than numerical permissions:

chmod a+x newmkapp

Voila ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文