Ok thanks, I think I may know what to do now. I think it was at 755 or something. If it works, i'll do a simple guide as most people will come here by google search, etc and won't know this stuff.
edit: ok nothing I do works. I have zero prior knowledge of unix. Just do a simple guide. I got the latest padavan firmware, enabled SSH, downloaded putty SFTP client, typed open 192.168.1.1 and entered admin/admin, typed cd /etc/storage, typed put simple_shaper.sh, typed chmod 766 simple_shaper.sh and received 0666->0766. Typed dir which shows it is there, then I have tried all sorts of commands to run simple_shaper.sh but it says it is not found. I the console, Putty and Putty SFTP.
Try:
Code:
cd /etc/storage
./simple_shaper.sh
In Linux, for root user, "." (current directory) is not included in the path ($PATH), so you have to use "./simple_shaper.sh" to run a shell script in the current directory.