Enabling server mode

Daniel Gimpelevich yellowdog-general@lists.terrasoftsolutions.com
Sun, 08 Aug 2004 12:45:49 -0700


What's wrong with simply this?
echo -ne "\x01\x13\x01" > powerup-boot
-- 
"No gnu's is good gnu's."   --Gary Gnu, "The Great Space Coaster"


> From: Jima <jima@beer.tclug.org>
> Reply-To: yellowdog-general@lists.terrasoftsolutions.com
> Newsgroups: gmane.linux.yellowdog.general
> Date: Sat, 7 Aug 2004 22:48:58 -0500 (CDT)
> Subject: Re: Enabling server mode
> 
> 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
> 
> _______________________________________________
> yellowdog-general mailing list
> yellowdog-general@lists.terrasoftsolutions.com
> http://lists.terrasoftsolutions.com/mailman/listinfo/yellowdog-general
> HINT: to Google archives, try  '<keywords> site:terrasoftsolutions.com'
>