Export Filesystem as NFS: Difference between revisions
Jump to navigation
Jump to search
imported>NetBoot Fixed path |
imported>Mrjcleaver No edit summary |
||
| Line 26: | Line 26: | ||
;; | ;; | ||
stop) | stop) | ||
echo " | echo "Stopping NFS server..." | ||
killall -kill nfsd | killall -kill nfsd | ||
killall portmap | killall portmap | ||
| Line 33: | Line 33: | ||
esac | esac | ||
<pre> | <pre> | ||
Note the main change is to add "-kill" | |||
Revision as of 04:55, 12 February 2008
According to http://www.synology.com/enu/forum/viewtopic.php?t=5569, the NFS package shipped in Nov 2007 is does not work properly. Replace /usr/syno/etc.defaults/rc.d/S83nfsd.sh with the following.
Caveat emptor: This is not supported by Synology. It is not my solution. All thanks and accountability belongs to NetBoot.
#!/bin/sh
# Copyright (c) 2000-2008 Synology Inc. All rights reserved.
case $1 in
start)
# Support=`/bin/get_key_value /etc.defaults/synoinfo.conf supportnfs`
# case "$Support" in
# [Yy][Ee][Ss])
# ;;
# *)
# echo "NFS server is not supported. Skip..."
# exit
# ;;
# esac
echo "Starting NFS server..."
/sbin/portmap
/usr/sbin/nfsd
/usr/sbin/mountd
/usr/sbin/exportfs -ra >/dev/null 2>&1
;;
stop)
echo "Stopping NFS server..."
killall -kill nfsd
killall portmap
killall mountd
/usr/sbin/exportfs -ua >/dev/null 2>&1
esac
Note the main change is to add "-kill"