linux中nfs的自動掛載

nfs的自動掛載:服務器

image

服務器段的配置:app

創建一個共享文件:ide

[root@localhost ~]# mkdir /pub測試

編輯文件/etc/exportsrest

添加下面一行blog

/public 192.168.10.0/24(ro)ip

導出共享:rpc

[root@localhost ~]# exportfs -rv
exporting 192.168.10.0/24:/publicget

重啓服務:it

[root@localhost ~]# service nfs restart

客戶端配置:

創建掛載點目錄:

[root@localhost ~]# mkdir /mnt/nfs/

掛載:

[root@localhost ~]# mount 192.168.10.2:/public /mnt/nfs

[root@localhost ~]# mount
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
192.168.10.2:/public on /mnt/nfs type nfs (rw,addr=192.168.10.2)

開機掛載:

編輯文件/etc/fstab

添加

192.168.10.2:/public /mnt/nfs nfs ro,soft,intr 0 0

自動掛載:

編輯文件/etc/auto.master

添加下圖:

image

拷貝文件:

[root@localhost ~]# cp -p /etc/auto.misc /etc/auto.nfs

編輯文件 /etc/auto.nfs

添加下列行:

image

重啓服務 [root@localhost ~]# service autofs restart

測試:

image

一分鐘後:

image

相關文章
相關標籤/搜索