How to change files/folders ownership

sudo chown username /location_of_files_or_folders

If you want to change ownership of all containing files and folders recursively, use the -R option like this:

sudo chown -R username /location_of_files_or_folders

How to change files/folders group ownership

sudo chgrp groupname /location_of_files_or_folders

If you want to change group ownership of all containing files and folders recursively, use the -R option like this:

sudo chgrp -R username /location_of_files_or_folders

posted on 2011-11-28 20:02  黑妞haha  阅读(9943)  评论(0编辑  收藏  举报