First of all thank you very much Wengi for this great tutorial, it should be sticked and unified with the one by marcnesium.
Today I upgraded my Wl500gP firmware with the latest from Oleg, so I decided to take a look to your toturial to change something on my filesystem...
Some note after installation:
Installed Samba2, due to problems browsing my USB disk from WinVista.
Now it's ok. Installing via ipkg Samba2 on top of original Oleg's firmware, in /opt/etc/init.d I 've found 2 samba start script:
S80samba
Code:
#!/bin/sh
if [ -n "`pidof smbd`" ] ; then
echo "Stopping smbd:"
killall smbd
fi
if [ -n "`pidof nmbd`" ] ; then
echo "Stopping nmbd:"
killall nmbd
fi
#sleep 2
echo "Starting smbd:"
/opt/sbin/smbd -D;
echo "Starting nmbd:"
/opt/sbin/nmbd -D;
and S97Samba
Code:
#!/bin/sh
/usr/sbin/smbd -D -l /opt/var/log/smbd.log -s /opt/etc/samba/smb.conf
/usr/sbin/nmbd -D -n myasus -o -l /tmp -s /opt/etc/samba/smb.conf
I don't know if this is a my mistake, but moving samba service from initd to xinitd, I had to remove both file.
One question about samba2 on xinitd: at first startup both samba services are not loaded, when I try to access my shared disk, i can see nmbd and smbd running. Are these precesses stopped after some time of inactivity ?
Another question about xinitd: I'd like to run my MediaServer (WizD) using xinitd too, to save memory space. Is it possible ?
A note about SSH autologin. This is how my login appear now:
Code:
Using username "root".
Authenticating with public key "MyAsus"
Passphrase for key "MyAsus":
As you can see is asking me my Passphrase instead of a complete autologin. Is this normal ?
About modules: in my WL even if not listed by lsmod, videodev is removable to gain some more Kb in memory.
More questions on the way... let me test deeply this new fw/sw combination...
Max