Skip to Content.
Sympa Menu

baslinux - Re: [BL] filesharing between laptops

baslinux AT lists.ibiblio.org

Subject: Baslinux mailing list

List archive

Chronological Thread  
  • From: baslinux AT lists.ibiblio.org
  • To: baslinux AT lists.ibiblio.org
  • Subject: Re: [BL] filesharing between laptops
  • Date: Tue, 15 Apr 2008 19:59:58 +0000 (UTC)


I have posted two scripts suitable for BL2 (and BL3, just remark out the three insmod lines, or the first two for regular kernel)
http://keesan.freeshell.org/bl/rpc-on - for the server computer
http://keesan.freeshell.org/bl/nfs-on - for the client computer

Substitute for 3c59x your own network card module(s).

Do I have it all correct now?
I will look for the default gateway stuff in the archives.

Sindi

--------------------
rpc-on


##Use on the server computer that gets mounted to the other one
##Requires the 'big' BL3 kernel or my 2.4.31 kernel.

##First edit /etc/exports here to read / 192.168.1.1(rw,no_root-squash)

insmod 3c59x
ifconfig eth0 192.168.1.2
rpc.portmap
rpc.mountd
rpc.nfsd
##These are from tcpip1.tgz

#On the client computer run nfs-on

-------------------
nfs-on

#Run this on the computer to which you will mount files (client)
##Use the BL3 'big' kernel, or my 2.4.31 kernel with three modules

insmod 3c59x
ifconfig eth0 192.168.1.2

insmod sunrpc ##not needed for BL3 kernels
insmod lockd ##not needed for BL3 kernels
insmod nfs ##needed also for regular BL3 kernel

rpc.portmap
mount -t nfs 192.168.1.1:/ /mnt

##On the server computer run rpc-on





Archive powered by MHonArc 2.6.24.

Top of Page