我已将该文件的所有权更改为用户用户19 02042013015 ,我已成功更改文件的所有权但我不知道如何通过user19访问该文件?
答案 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
用户必须可以读取父目录。