当前位置: 技术问答>linux和unix
/etc/rc.local开机自动挂载失败
来源: 互联网 发布时间:2016-10-17
本文导语: 在/etc/rc.local中添加内容如下: sh /mnt/mount123.sh mount123.sh内容如下: mount -t nfs -o rw 32.74.4.123:mnt/efile/dbbak /mnt/dbbak mount123.sh有777权限 我手动执行sh /mnt/mount123.sh能够挂载成功 但是当我开机以后自动挂载是失败的,...
在/etc/rc.local中添加内容如下:
sh /mnt/mount123.sh
mount123.sh内容如下:
mount -t nfs -o rw 32.74.4.123:mnt/efile/dbbak /mnt/dbbak
mount123.sh有777权限
我手动执行sh /mnt/mount123.sh能够挂载成功
但是当我开机以后自动挂载是失败的,请问这是什么原因?
sh /mnt/mount123.sh
mount123.sh内容如下:
mount -t nfs -o rw 32.74.4.123:mnt/efile/dbbak /mnt/dbbak
mount123.sh有777权限
我手动执行sh /mnt/mount123.sh能够挂载成功
但是当我开机以后自动挂载是失败的,请问这是什么原因?
|
etc/rc.d/rc.local
|
因为/etc/rc.local是到/etc/rc.d/rc.local的一个软链接而已!
|
/bin/mount -t nfs -o rw 32.74.4.123:mnt/efile/dbbak /mnt/dbbak
rc.local需要绝对路径滴
rc.local需要绝对路径滴