Results 1 to 7 of 7
I am trying to register on the Chakra forum and the human question What is the output of: echo $(date -u +%W)$(uname) | sha256sum | sed 's/\W//g' ? Not sure ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-02-2011 #1Just Joined!
- Join Date
- Aug 2005
- Location
- Huntington Beach
- Posts
- 14
What's up?
I am trying to register on the Chakra forum and the human question What is the output of: echo $(date -u +%W)$(uname) | sha256sum | sed 's/\W//g' ? Not sure what the answer is. What are they looking for?
- 05-02-2011 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
- 05-02-2011 #3Just Joined!
- Join Date
- Aug 2005
- Location
- Huntington Beach
- Posts
- 14
- 05-02-2011 #4
I just registered and it works ok for me. Maybe you copied an extra space or something in there?
- 05-02-2011 #5Just Joined!
- Join Date
- Aug 2005
- Location
- Huntington Beach
- Posts
- 14
Checksum
From another forum a post gave me a string of numbers and letters and said it was a
check sum which I hadn't thought of. So, I copied and pasted that and it worked fine.
It was totally different from the string I created from a terminal on my system.
I did it a few times so I know I copied and pasted that string without any glitches. Oh, well another binary mystery.
- 05-02-2011 #6
It is a checksum, that's the sha256sum part.
The fist part generates a number based on the week of the year
Then adds the output of unameCode:# date -u +%W 18
Then gets the sha256sum of that, a 256 bit checksum.Code:# echo $(date -u +%W)$(uname) 18Linux
Then gets rid of the extraneous character at the end with sed.Code:# echo $(date -u +%W)$(uname) | sha256sum 9a93b71d5b2841e649195bc81f8e38600860a040bc368cdbd0cde346b73248a1 -
Code:# echo $(date -u +%W)$(uname) | sha256sum | sed 's/\W//g' 9a93b71d5b2841e649195bc81f8e38600860a040bc368cdbd0cde346b73248a1
- 05-03-2011 #7Just Joined!
- Join Date
- Aug 2005
- Location
- Huntington Beach
- Posts
- 14
Thanks for that reply. I traced my steps and tonight I got that exact same string the checksum that works. So, it must have been an error on my part when copying & pasting in the terminal yesterday.


Reply With Quote

