..you have done a masterpiece without hands on a WL-HDD..Quote:
Originally Posted by Oleg
yes!Quote:
Does it really turns off (i.e. all LEDs are turned off and HDD is stoped)?
Printable View
..you have done a masterpiece without hands on a WL-HDD..Quote:
Originally Posted by Oleg
yes!Quote:
Does it really turns off (i.e. all LEDs are turned off and HDD is stoped)?
This makes sense.Quote:
Originally Posted by Styno
Would you like to use whole ext3 for /opt? If the answer is no (i.e. you want to leave something to /tmp/harddisk - user accessible share), then repartition the drive.Quote:
- Yes, I've searched (the search button is a big friend of mine remember? :p) on `/opt` and read all topics (about 14 of them) but could only find pointers to this topic, no solution.
Please can you help me?
Anyway, here is goes (it's really simple). Add these lines to your post-boot:
That's all. Am I miss something?Code:swapon /dev/discs/disc0/part5
mount -t ext3 /dev/discs/disc0/part6 /opt
P.S. If you want to share part5 both for /opt and /tmp/harddisk, then create directory named /opt in the /tmp/harddisk and add this line to the post-mount
and this to post-boot:Code:mount -obind /tmp/harddisk/opt /opt
Code:swapon /dev/discs/disc0/part5
Styno, I would recommend you creating /tmp/harddisk/opt or separate partition (this is preffered).Quote:
Originally Posted by Styno
I will probably will be kicked for this (i hope not) but i like the features in this firmware. As i noticed that there is an ssh client in here and thats one thing i like to have.
But now i have a little problem.
1. Is this version safer / more stable then the asus firmware?
2. Is there a webinterface?
3. Can i just upload the firmware to my asus wl500g?
i have a bit linux knowledge but not much aimed at the wl500g
br
Ronald
Ok, I will do that. Thanks again for your help!Quote:
Originally Posted by Oleg
Well, I must say: You should read a bit in this forum, but I won't kick you out for this ;)Quote:
Originally Posted by yilias
1. Simple rule: When you install more software on a router -> it will become less safe. But hey, everyone is doing this and I've never heard of someone being hacked for it.
2. Yes, it uses the original Asus webinterface with some added pages. An webinterface for ipk packages is underway.
3. Yes, uploading works as described in your manual.
In fact Antiloop performed much testing and added WL-HDD pages. I've spent most of time playing with ide modules...Quote:
Originally Posted by petgun
Ok, I need someone to play with GPIO lines then. There should be one, which turns WL-HDD off. The lines in question are accessible via /dev/gpio/outen (output enable) and /dev/gpio/out (output). One line is controling power-led (bit 0), another one is RESTORE button (bit 6) other lines are used for accessing real time clock and controlling power as seems. So, I need volunteer that will run these commands in turn and let me know which one turned wl-hdd off:
Code:test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 2
test gpio /dev/gpio/out 0
test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 4
test gpio /dev/gpio/out 0
test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 8
test gpio /dev/gpio/out 0
test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 10
test gpio /dev/gpio/out 0
test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 20
test gpio /dev/gpio/out 0
test gpio /dev/gpio/out ff
test gpio /dev/gpio/outen 80
test gpio /dev/gpio/out 0
Hmm, strange thing happens: When I place the mount -obind ... command in post-mount script, the /tmp/harddisk/opt directory doesn't get mounted. But when I execute the same command after logging in it works....
Have you added this?
Code:#!/bin/sh
Quote:
Originally Posted by Oleg
Yep, I did :)Code:cat /usr/local/sbin/post-mount
#!/bin/sh
swapon /dev/scsi/host0/bus0/target0/lun0/part5
mount -obind /tmp/harddisk/opt /opt
So, it still does not work? If it does not, then try adding something likeQuote:
Originally Posted by Styno
to check if it really works.Code:echo post-mount > /tmp/post-mount.log
sorry, I tried them all, but no one switched off the WL-HDDQuote:
Originally Posted by Oleg
I believe you Oleg, that's not the issue. The -4 firmware just breaks over and over on my setup. Most of the time loosing ssh and wireless, but yesterday it freaked out completely and even LAN access was gone. Being tired of this I flashed back to -3c and sofar things are still going. The last reboot (planned) was around 10 pm yesterday and this morning 9 am I could still log on to the router from the office, sofar it's still alive.Quote:
Originally Posted by Oleg
Regarding the wireless. I don't think someone just installed wireless equipment in the neighborhood. I did a netstumbler scan yesterday and all looks the same. Ofcourse, the unit can be switched of but considering the neighborhood and range of the wireless devices, I don't think so. Ofcourse the band is an ISM band and shared with other ISM devices as well, I can't check for wireless videolink devices that may interfere. Apart from that the lower channels are also shared with amateur radio (high power) and professional video link services (low power). One of the reasons to go back to the -3c release, if it is the wireless stuff, that one might give problems to. If the -3c stays online, it may be something different in the -4 release.
If I find something more, I'll let you know.
Did you try the full reset? I also get instability between firmwares versions if I don't restart configuration from scratch. Also, I usualy disable WMM extentions and work using WEP
New day, new attempts :) and I found the problem: post-mount was not executable yet. :o My bad, sorry.Quote:
Originally Posted by Oleg