Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Larry Brigman
You cannot change ownership of mounted filesystems. That must be done from the remote end. Only the contents can be modified when you have permissions. You will probably need to figure out what the expected options are on the NFS mount command. We mount our NAS at work as remote home directories

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 19:05:46 -0700 Don Buchholz dijo: > >I think you're really close ... > >(1) > sudo mount -t nfs > 192.168.0.101:*/*volume1/Synology /media/jjj/Synology > >... that little "/" in front of 'volume1' could be important. You may be onto something here. First, I thought th

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Tomas Kuchta
I forgot to add - you must run (as root): mount nfsClientMountDir - if you want to mount the NFS share without reboot. T On Monday, July 11, 2016 07:17:18 PM you wrote: > Here is simple example of NFS NAS and client (PC) configuration: > > Names and abreviations: > * data - NFS server dir t

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Tomas Kuchta
Here is simple example of NFS NAS and client (PC) configuration: Names and abreviations: * data - NFS server dir to be exported * nfsServerIp - IP of NFS Server * nfsClientIp - IP of NFS client (example: 192.168.1.100) * networkIp - IP of your network (example: 192.168.1.1) * nfsClientMo

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Don Buchholz
I think you're really close ... (1) sudo mount -t nfs 192.168.0.101:*/*volume1/Synology /media/jjj/Synology ... that little "/" in front of 'volume1' could be important. (2) You might want to clean-up the exports list ... ... just to get started, put *only* the IP address f

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 18:07:23 -0700 Don Buchholz dijo: >(3) Try this command (as 'root'!) to see what the NAS is making > available to mount with the NFS protocol: > > showmount -e 192.168.0.101 Export list for 192.168.0.101: /volume1/Synology *.*.*.*,192.168.0.136,192.168.0.146,1

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread David Fleck
On Mon, 2016-07-11 at 18:07 -0700, Don Buchholz wrote: showmount -e 192.168.0.101 Yes. Running this command (it may be /usr/sbin/showmount on your machine) and posting the output will be helpful. It looks to me as though the NAS isn't configured quite right. You need to know what it thinks it'

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Don Buchholz
(1) "only root can do that ..." -- um, yes, generally, only 'root' is allowed to perform mount(8) commands -- so, you need to become 'root' (a) login to the console as 'root', -OR- (b) execute the command "su -" and enter root p/w when prompted,

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 18:04:41 -0500 David Fleck dijo: >Forgive me if somebody has already posted this link: >https://www.synology.com/en-us/knowledgebase/DSM/tutorial/File_Sharing/How_to_access_files_on_Synology_NAS_within_the_local_network_NFS > >Perhaps there is something in there that will clea

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread David Fleck
On Mon, 2016-07-11 at 12:30 -0700, John Jason Jordan wrote: > jjj@Devil-Bonobo:/media/jjj$ mount -t nfs > synology.local:/synology /media/jjj/Synology > mount: only root can do that > jjj@Devil-Bonobo:/media/jjj$ sudo su > root@Devil-Bonobo:/media/jjj# mount -t nfs > synology.l

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 12:20:26 -0700 Bill Barry dijo: >On Jul 11, 2016 11:48 AM, "John Jason Jordan" >wrote: >> >> On Mon, 11 Jul 2016 17:41:30 + >> Jason Spohn dijo: >> >> >Check out this page for some info on mounting NFS on Linux. Also >> >shows how to create the proper 'fstab' to make it

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 10:54:40 -0700 Don Buchholz dijo: >> This is the command that mounts it with SMB: >> >> sudo mount.cifs //synology.local/synology/ /media/jjj/Synology/ >> --verbose -o user=jjj >> >> I assume I have to change either 'mount.cifs' or >> '//synology.local/synology/. So far G

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Bill Barry
On Jul 11, 2016 11:48 AM, "John Jason Jordan" wrote: > > On Mon, 11 Jul 2016 17:41:30 + > Jason Spohn dijo: > > >Check out this page for some info on mounting NFS on Linux. Also shows > >how to create the proper 'fstab' to make it persistent. > >http://www.tldp.org/LDP/nag2/x-087-2-nfs.mountd

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Dale Snell
On Mon, 11 Jul 2016 11:48:44 -0700, in message 2016074844.0a360442@Devil-Bonobo, John Jason Jordan wrote: > On Mon, 11 Jul 2016 17:41:30 + > Jason Spohn dijo: > > >Check out this page for some info on mounting NFS on Linux. Also > >shows how to create the proper 'fstab' to make it persis

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Mon, 11 Jul 2016 17:41:30 + Jason Spohn dijo: >Check out this page for some info on mounting NFS on Linux. Also shows >how to create the proper 'fstab' to make it persistent. >http://www.tldp.org/LDP/nag2/x-087-2-nfs.mountd.html I read the above page and tried what it said to do, but noth

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Don Buchholz
On 7/11/2016 10:34 AM, John Jason Jordan wrote: > On Sun, 10 Jul 2016 23:02:13 -0700 > Bill Barry dijo: > >> On Sun, Jul 10, 2016 at 10:42 PM, John Jason Jordan >> wrote: >>> I have discovered something that I should have noticed a long time >>> ago, that is, that the entire drive is owned by roo

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread Jason Spohn
Check out this page for some info on mounting NFS on Linux. Also shows how to create the proper 'fstab' to make it persistent. http://www.tldp.org/LDP/nag2/x-087-2-nfs.mountd.html Jason Spohn This electronic data is provided by Siegfried, as a courtesy. This data is distributed "as is" withou

Re: [PLUG] Rsync user confusion: Who is user 1026?

2016-07-11 Thread John Jason Jordan
On Sun, 10 Jul 2016 23:02:13 -0700 Bill Barry dijo: >On Sun, Jul 10, 2016 at 10:42 PM, John Jason Jordan > wrote: >> I have discovered something that I should have noticed a long time >> ago, that is, that the entire drive is owned by root. That would >> explain the fact that the -o --owner and