递归地更改目录中文件的权限 [英] changing permissions of files in a directory recursively

查看:160
本文介绍了递归地更改目录中文件的权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



<$ p $

p> user @ machine:/ local / mnt / workspace $ find。 -type f -exec chmod 644 {} \;
chmod:改变`./halimpl/ncihal/adaptation/NonVolatileStore.cpp'的权限:不允许的操作




  #chown -R directory_path 

但是它也会改变目录的权限。



对于只有文件,您可以运行。

  #find directory_path -type f -exec chmod 644 {} \\ \\; 

看起来你没有足够的权限。尝试

  #sudo find directory_path -type f -exec chmod 644 {} \; 

或以root用户身份运行该命令。

I am trying to change the permissions of a files present in a directory and subdirectories using the below command and running into below error..can anyone help?

user@machine:/local/mnt/workspace$ find . -type f -exec chmod 644 {} \;
chmod: changing permissions of `./halimpl/ncihal/adaptation/NonVolatileStore.cpp': Operation not permitted

解决方案

you can run the following command:

 #chown -R directory_path

But it will change the permissions of directories also.

For only files, you can run.

 #find directory_path -type f -exec chmod 644 {} \;

It also looks like you dont have enough permissions. try

 #sudo find directory_path -type f -exec chmod 644 {} \;

or run the command as root user.

这篇关于递归地更改目录中文件的权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆