Displaying 3 results from an estimated 3 matches for "resvport".
Did you mean:
rresvport
2009 Sep 11
3
NFS export issue
Hello,
I have a ZFS filesystem structure, which is basically like this:
/foo
/foo/bar
/foo/baz
all are from one pool and /foo does only contain the other
directories/mounts (no other files)
When I try to export /foo via dfstab, I can see the directories bar and baz,
but these are empty.
Can I only export via NFS each subdir on its own ?
thanks in advance.
Thomas
2018 Jun 28
1
How to Join Mac OSX workstation as AD domain member
On Wed, 27 Jun 2018 23:11:05 -0400
Mark Foley via samba <samba at lists.samba.org> wrote:
> On Wed, 27 Jun 2018 19:31:58 +0100 Rowland Penny wrote:
> > Only Windows uses GPO's (as yet). GPO's operate on the registry and
> > only Windows has the registry.
>
> I suspected that, but didn't know for sure. That's great! I'm not a
> fan of GPOs. I
2007 Apr 30
10
mount type and ensure => present on OS X
.... Thanks
Apple!
Anyway, to manage /etc/fstab we have use:
mount { "/home/student":
atboot => true,
device => "nfsserver:/path",
ensure => present,
fstype => nfs,
options =>
"resvport,net,nodev,rw,intr,lock,hard,async,wsize=8192,rsize=8192",
dump => 0,
pass => 0,
provider => parsed,
target => "/etc/fstab",
require => File["/mountpoint"],
}
So far so g...