Tiny Core Linux
Tiny Core Extensions => TCE Bugs => Topic started by: jls on October 08, 2013, 07:01:59 AM
-
:'(
-
I don't find the post at the moment, but I recall that somebody confirmed it worked...
Do you have any error messages?
-
jls@pc2:~$ sudo /usr/local/etc/init.d/nfs-server start
nodev nfsd
/usr/local/sbin/rpc.statd is already running
6762
/usr/local/sbin/rpc.mountd is already running
6780
nfs-server utilities are started.
but looking at services nfs-server is not on
-
Actually I don't care about nfs since I managed to use openssh
-
It's a bug that I've already posted. Patch is here:
--- /usr/local/etc/init.d/nfs-server
+++ /usr/local/etc/init.d/nfs-server
@@ -12,7 +12,7 @@
fi
if grep nfsd /proc/filesystems 2> /dev/null; then
- if grep nfsd /proc/mounts 2> /dev/null; then
+ if [ -z "`grep nfsd /proc/mounts`" 2> /dev/null ]; then
mount -t nfsd nfsd /proc/fs/nfs 2> /dev/null
fi
fi
-
Simpler:
grep -q nfsd /proc/mounts || mount -t nfsd nfsd /proc/fs/nfs 2> /dev/null
-
Hi
I've tried both awabimakoto and gerald_clark solution, but nothing chaged
-
jls_legalize: did you install the filesystems-`uname -r` extension?