NFS export question && diskless dirs

James jamesh at lanl.gov
Thu Oct 11 13:20:47 PDT 2007


On Thu, 2007-10-11 at 21:23 +0200, mr. phreak wrote:

> hi. I have a question regarding NFS-exports.
> 
> /etc/exports
> /diskless/ro    -ro -maproot=root leia
> /diskless/kernels leia
> /diskless/rw   leia
> /usr    -ro -alldirs leia
> /home   -alldirs leia
> /etc    -ro -alldirs -maproot=root leia
> 
> but mountd only recognize /diskless/ro - /usr - /home/ and /etc 
> (showmount -e). How can I export
> 
> /diskless/ro -ro && /diskless/kernels with rw && /diskless/rw with rw 
> tothe same host???
> 
> Also, I have another question. Is it possible to run a diskless system 
> with /var and /tmp mounted
> on a NFS-mount instead of using memory-disks? If possible, I'd gladly 
> appreciate some tips or
> links.
> 
> Best regards,
> J
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"




Check out the handbook page on NFS:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-nfs.html


"In /etc/exports, each line represents the export information for one
file system to one host. A remote host can only be specified once per
file system, and may only have one default entry. For example, assume
that /usr is a single file system. The following /etc/exports would be
invalid:

# Invalid when /usr is one file system
/usr/src client
/usr/ports client

One file system, /usr, has two lines specifying exports to the same
host, client. The correct format for this situation is:

/usr/src /usr/ports client

The properties of one file system exported to a given host must all
occur on one line. Lines without a client specified are treated as a
single host. This limits how you can export file systems, but for most
people this is not an issue."


More information about the freebsd-questions mailing list