如何在更改文件所有权后更改文件的所有权并访问文件?

时间:2017-08-08 09:50:35

标签: linux centos7

我已将该文件的所有权更改为用户用户19 02042013015 ,我已成功更改文件的所有权但我不知道如何通过user19访问该文件?

我已按照此处的屏幕截图所示完成。enter image description here

我已经更改了屏幕截图中显示的目录模式,但仍然无法通过user19访问directory1。enter image description here

1 个答案:

答案 0 :(得分:0)

使用"Incomplete document", java.io.IOException: Incomplete document"

su

现在让我们只为所有者阅读:

# adduser testuser
# mkdir testdir
# chown testuser:testuser testdir/
# ls -l | grep test
drwxr-xr-x 2 testuser   testuser     4096 Aug  8 09:55 testdir

并尝试在各种用户下列出:

# chmod 700 testdir/
# ls -l | grep test
drwx------ 2 testuser   testuser     4096 Aug  8 09:55 testdir

请注意 - # su - jmadmin -c 'ls -l testdir' ls: cannot open directory 'testdir': Permission denied # su - testuser -c "ls -l testdir" total 0 用户必须可以读取父目录。