Well, I am seriously confused in this material, so the visual answers will be very appreciated, especially if they make all this editing material less magical and more predictable.
I am trying to connect NAS Drobo-FS to nfs to get better performance than with cifs.
Some sort of ordered distribution of linux works for fractionally.
Inside / etc / fstab on the client machine (Ubuntu with IP: 192.168.1.150)
I have an unsd function set to fractional and access via ssh. This is the export file on the server machine (Drobo-FS with IP 192.168.1.100):
# Allow access for client machine /mnt/DroboFS/Shares 192.168.1.150(rw,no_root_squash)
Mounting works fine, except that all attached files are owned by root, and most file permissions are set to 744. The file permissions specified in mount on the client correspond to the actual permissions on the server. For instance:
client$ sudo chmod 123 /media/drobonfs/somefile client$ ls -l /media/drobonfs/somefile ---xw--wx 1 root root 0 2012-01-04 14:15 /media/drobonfs/somefile drobo$ ls -l /mnt/DroboFS/Shares/public/somefile ---xw--wx 1 root root 0 Jan 4 14:15 /mnt/DroboFS/Shares/public/somefile
Writing sudo before each command is a drag and drop, and I want to understand what is happening and what can I do to mount it on the client machine with adding the owner / group to my account instead of root?
source share