|
Written by Administrator
|
|
Sunday, 15 March 2009 01:44 |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
1. Make a share
nano /etc/exports
/home 192.168.0.0/255.255.255.0(rw)
2. Start the nfs server
/etc/init.d/nfs start
3. Next set nfs server to start on boot
chkconfig nfs on
4. Now make it auto mount on boot
nano /etc/fstab
192.168.0.1:/home /home nfs rw,bg,hard,intr 0 0
5. If you just want to mount a drive temporarily then run the following command.
mount -t nfs 192.168.0.1:/home /home
6. And of course to unmount it
umount /home
|
|
|
Last Updated on Thursday, 16 April 2009 18:50 |