Link to home
Start Free TrialLog in
Avatar of maliksl4141
maliksl4141

asked on

Mount File system

Hello..

can anybody show me how to
mount a file systems using NFS
into my sparc20 machine;

 In my SERVER A i have /backup/log
 which i would like to put
 as NFS in my sun spart station.

 tq
Avatar of yuzh
yuzh

You have server A, and Workstation B (SPARC 20)

At server A: (login as root or su as root)

   1.edit /etc/hosts, add the information about B to the file.
   eg:
   139.xxx.xxx.xxx A

   2. verify if NFS deamon is running
   ps -ef | grep nfsd
   if you get no out put them type in:
   /etc/rc3.d/S15nfs.server start

   3. type in :
   share -F nfs -o rw=A,root=A /backup/log
   
   
At B you do (login as root or su as root):

   1. edit /etc/hosts, to add information about A to the
file.

   2. mount the file system to a empty dir, eg /mnt
   type in:
   mount A:/backup/log /mnt
   

   
ASKER CERTIFIED SOLUTION
Avatar of msnr
msnr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of maliksl4141

ASKER

tq it helps