linux修改文件所属的用户组以及用户
linux修改文件所属的用户组以及用户
将A的Downloads文件夹下的所有文件,复制到B的Documents文件夹下,
此时在Documents文件夹下多了一个Downloads文件夹
可使用以下命令,将sourceDir文件夹拷贝到destDir文件夹下:
cp sourceDir/ destDir/ -rf
在A用户的终端执行
sudo cp -R /home/huangxf/Downloads/ /home/zhenglf/Documents/Downloads/
修改所有者
sudo chown -R zhenglf /home/zhenglf/Documents/Downloads/
修改用户组
sudo chgrp -R zhenglf /home/zhenglf/Documents/Downloads/
此时B用户是复制过来的文件拥有者,在B用户的终端可以对此文件修改权限
修改文件权限
chmod -R 777 /home/zhenglf/Documents/Downloads/