Direkt zum Hauptbereich

Posts

Es werden Posts vom Januar, 2010 angezeigt.

switch radio of asus 500wg with hardwarbutton

like http://www.wl500g.info/showthread.php?t=12620&highlight=turn+radio explains /usr/local/sbin/ez-setup has to be modified like this: #!/bin/sh WLAN=`wl isup` time=`/bin/date '+%b %e %H:%M:%S'` if [ "$WLAN" = "0" ]; then echo "$time: EZ-SETUP pressed: wireless turned ON" >> /tmp/syslog.log && wl radio on else echo "$time: EZ-SETUP pressed: wireless turned OFF" >> /tmp/syslog.log && wl radio off fi make it executeable: chmod +x /usr/local/sbin/ez-setup and do a save / reboot: flashfs save && flashfs commit && flashfs enable && reboot

use of service

i always forget it... here it is: Some useful commands for screen are: Code: C-a c create C-a n next C-a p previous C-a # #=number of screen beginning with 0 C-a A give a name C-a " list C-a K kill C-a d detatch screen -r reattach C-a S split horizontally C-a X kill 2nd region thanks to http://wl500g.info/showthread.php?t=5909