Enabling server mode

Jima yellowdog-general@lists.terrasoftsolutions.com
Sat, 7 Aug 2004 22:48:58 -0500 (CDT)


On Sat, 7 Aug 2004, Bill Fink wrote:
> Here's one approach (using equivalent octal values).
> It's as easy as 123.  :-)
> 
> echo -n 123 > powerup-boot0
> tr 1 '\001' < powerup-boot0 > powerup-boot1
> tr 2 '\023' < powerup-boot1 > powerup-boot2
> tr 3 '\001' < powerup-boot2 > powerup-boot
> Hex:

 Another way to do it (aren't there always?):

perl -e 'printf("%c%c%c",0x01,0x13,0x01)' > powerup-boot

     Jima