- I have NFS server (say server_sys) and client (say client_sys) and
mount a directory off NFS server, then create/chmod/chown a file to
users common to both systems
- then i attempt to chown file to user common *only* to client and
get permissions error...is this because <another_user> is not on NFS
server, this is not a directory perms issue.
# mount -F nfs -o rw,vers=4 server_sys:/export/home/server_dir
/client_dir
# cd /client_dir
# touch client_test_file.tst
# chmod 777 client_test_file.tst
# chown bin client_test_file.tst
# chgrp staff client_test_file.tst
# chown another_user uidmapping.tst
chown: client_test_file.tst: Permission denied
^^^^^^^^^^^^^^^^^
why?