I have a truble with NFS mount.
When i mount remote dir, then all permissions changes!
For example:
# mkdir /data
# mount 10.1.1.100:/var/data /data
# ls -l /data
drwxr-xr-x 7 nobody nobody 5632 Oct 22 14:55 file1
drwxr-xr-x 4 nobody nobody 512 Oct 22 14:55 file2
....
Or on other servers :
# mkdir /arch
# mount 10.0.0.1:/odb0/arch /arch
# ls -l /data
drwxr-xr-x 7 kripton dba 2331 Oct 22 14:55 file1
drwxr-xr-x 4 kripton dba 314 Oct 22 14:55 file1
....
Nothing user kripton on remote host not present ! (sorry for my bad english).
NFS mount inherits permission UID and GID (digital value), but from other machine these values have coincided under number of my user.
On remote host files have permissions oracle:dba and i want mount this directory with same rights.
Thanks