4512c74efe
U9fs is a program that serves Unix files to Plan 9 machines using the 9P protocol. It is typically invoked on a Unix machine by inetd with its standard input and output connected to a network connection, typically TCP on an Ethernet. It typically runs as user root and multiplexes access to multiple Plan 9 clients over the single wire. It assumes Plan 9 uids match Unix login names, and changes to the corresponding Unix effective uid when processing requests. U9fs serves both 9P1 (the 9P protocol as used by the second and third editions of Plan 9) and 9P2000.
19 lines
733 B
Text
19 lines
733 B
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.1.1.1 2007/04/24 19:06:03 agc Exp $
|
|
|
|
To activate u9fs, you need to add the following lines to your
|
|
/etc/inetd.conf file:
|
|
|
|
564 stream tcp nowait root ${PREFIX}/libexec/u9fs u9fs -D -a none
|
|
|
|
After that, tell inetd to reload its config file:
|
|
|
|
/etc/rc.d/inetd reload
|
|
|
|
*********************************************************************
|
|
WARNING: "-a none" ABOVE MEANS THAT NO AUTHENTICATION WILL BE DONE ON
|
|
ANY CLIENTS WHICH CONNECT TO u9fs. THIS IS ALMOST CERTAINLY NOT WHAT
|
|
YOU WANT
|
|
*********************************************************************
|
|
|
|
===========================================================================
|