Prev: Fail
Next: Gone
From: trryhend on
I'm trying to connect to a nfs share from a 12.0 system to a 13.0
system. Cient (v12.0) runs ext3. Server (v13.0) runs ext4. Is that
a problem?
First I was getting (from /var/log/messages) "kernel: portmap: Server
localhost not responding, timed out"
I asumed portmap needed to be running so I ran portmap and now
getting: "mount: RPC: Program not registered"
/etc/exports entry:
/home/tgm/Pictures 192.168.1.0/24(rw,sync,insecure,all_squash)

Any clues?
From: Mike Jones on
Responding to trryhend(a)gmail.com:

> I'm trying to connect to a nfs share from a 12.0 system to a 13.0
> system. Cient (v12.0) runs ext3. Server (v13.0) runs ext4. Is that a
> problem?
> First I was getting (from /var/log/messages) "kernel: portmap: Server
> localhost not responding, timed out"
> I asumed portmap needed to be running so I ran portmap and now getting:
> "mount: RPC: Program not registered" /etc/exports entry:
> /home/tgm/Pictures 192.168.1.0/24(rw,sync,insecure,all_squash)
>
> Any clues?


Have you seen "sshfs" yet?

If all you want is *NIX-2-*NIX LAN mounts, this is way simpler, encrypted
by default, and easier to secure too. I replaced all my NFS stuff with it
and haven't looked back.

http://en.wikipedia.org/wiki/Sshfs

--
*=( http://www.thedailymash.co.uk/
*=( For all your UK news needs.
From: Grant on
On Mon, 18 Jan 2010 09:50:49 -0800 (PST), "trryhend(a)gmail.com" <trryhend(a)gmail.com> wrote:

>I'm trying to connect to a nfs share from a 12.0 system to a 13.0
>system. Cient (v12.0) runs ext3. Server (v13.0) runs ext4. Is that
>a problem?
>First I was getting (from /var/log/messages) "kernel: portmap: Server
>localhost not responding, timed out"
>I asumed portmap needed to be running so I ran portmap and now
>getting: "mount: RPC: Program not registered"
>/etc/exports entry:
>/home/tgm/Pictures 192.168.1.0/24(rw,sync,insecure,all_squash)
>
> Any clues?

# chmod +x /etc/rc.d/rc.rpc
# /etc/rc.d/rc.rpc restart

My /etc/exports has slightly different options:
$ cat /etc/exports
# common rw export
/home/common 192.168.3.0/24(sync,rw,no_root_squash,no_subtree_check)
# ro slackware install trees
/home/mirror 192.168.3.0/24(sync,ro,no_root_squash,no_subtree_check)
# end

Did you 'exportfs -vr'?
For example:
# exportfs -vr
exporting 192.168.3.0/24:/home/common
exporting 192.168.3.0/24:/home/mirror

Grant.
--
http://bugs.id.au
From: trryhend on
Thanks for your suggestions. I went back over there today and
basically just rebooted the client PC and it worked. I'm not sure
what was the problem but uptime was 9 days and it worked after reboot.
From: trryhend on
On Jan 18, 2:40 pm, Mike Jones <N...(a)Arizona.Bay> wrote:
> Responding to trryh...(a)gmail.com:
>
> > I'm trying to connect to a nfs share from a 12.0 system to a 13.0
> > system. Cient (v12.0) runs ext3. Server (v13.0) runs ext4. Is that a
> > problem?
> > First I was getting (from /var/log/messages) "kernel: portmap: Server
> > localhost not responding, timed out"
> > I asumed portmap needed to be running so I ran portmap and now getting:
> > "mount: RPC: Program not registered" /etc/exports entry:
> > /home/tgm/Pictures 192.168.1.0/24(rw,sync,insecure,all_squash)
>
> > Any clues?
>
> Have you seen "sshfs" yet?
>
> If all you want is *NIX-2-*NIX LAN mounts, this is way simpler, encrypted
> by default, and easier to secure too. I replaced all my NFS stuff with it
> and haven't looked back.
>
> http://en.wikipedia.org/wiki/Sshfs
>
Thanks for the suggestion, I'll try sshfs next time for sure.
 |  Next  |  Last
Pages: 1 2 3 4 5 6
Prev: Fail
Next: Gone