LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 07-22-2012, 05:29 PM   #1
ham bone
Member
 
Registered: Jul 2012
Location: Wisc
Distribution: Arch Linux dual boot with Vista
Posts: 39

Rep: Reputation: Disabled
Registering in Arch Linux Forums


I was going to register with Arch Linux Forums. However, I could not because the site requires one to solve a riddle. The posts that enabled me to solve the post, no longer exist.

Here is the riddle:
What is the output of "date -u +%W$(uname)|sha256sum|sed 's/\W//g'"?(Required)

What is uname? is it kernel version oruser name?
Either way the result is a locked non functional terminal.
Please help
 
Old 07-22-2012, 05:41 PM   #2
rosehosting.com
Member
 
Registered: Jun 2012
Location: Missouri, USA
Posts: 236

Rep: Reputation: 64
Quote:
Originally Posted by ham bone View Post
I was going to register with Arch Linux Forums. However, I could not because the site requires one to solve a riddle. The posts that enabled me to solve the post, no longer exist.

Here is the riddle:
What is the output of "date -u +%W$(uname)|sha256sum|sed 's/\W//g'"?(Required)

What is uname? is it kernel version oruser name?
Either way the result is a locked non functional terminal.
Please help

That is a tricky captcha (see this thread) used in the registration form. `uname` is a tool for printing various system information.

Anyhow, it's pretty straightforward and simply executing the command in a shell will give you the answer.

Hope that helps
 
Old 07-22-2012, 05:47 PM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,979

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
Seems rather complex way to join. What if a newbie wanted to join?
 
Old 07-22-2012, 05:52 PM   #4
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Looks like you probably missed the last single-quote off the end, if you execute the following it should work:
Code:
date -u +%W$(uname)|sha256sum|sed 's/\W//g'
I agree with jefro that it's an odd thing to ask new users to do.
 
Old 07-22-2012, 06:04 PM   #5
rosehosting.com
Member
 
Registered: Jun 2012
Location: Missouri, USA
Posts: 236

Rep: Reputation: 64
Arch Linux has its own principles and philosophy and strives to keep that way. It expects its users to be enough competitive to understand and answer the captcha so they can register to the boards.

Anyhow, there were many trolls and spammers out there registering only to troll so that was the main reason of implementing that feature. For more information see the thread I posted in my previous reply.
 
Old 07-22-2012, 06:25 PM   #6
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
While it kind of requires some Linux knowledge to answer the "riddle" this
thread is about Arch forums, and as such belongs in GENERAL. Hence that's
where it's getting moved to.

Cheers,
Tink
 
Old 07-22-2012, 08:28 PM   #7
ham bone
Member
 
Registered: Jul 2012
Location: Wisc
Distribution: Arch Linux dual boot with Vista
Posts: 39

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rosehosting.com View Post
That is a tricky captcha (see this thread) used in the registration form. `uname` is a tool for printing various system information.

Anyhow, it's pretty straightforward and simply executing the command in a shell will give you the answer.

Hope that helps
Thanks. To precisely condense and restate what you've written, you're saying copy & paste.
 
Old 07-22-2012, 08:33 PM   #8
ham bone
Member
 
Registered: Jul 2012
Location: Wisc
Distribution: Arch Linux dual boot with Vista
Posts: 39

Original Poster
Rep: Reputation: Disabled
273

Quote:
Originally Posted by 273 View Post
Looks like you probably missed the last single-quote off the end, if you execute the following it should work:
Code:
date -u +%W$(uname)|sha256sum|sed 's/\W//g'
I agree with jefro that it's an odd thing to ask new users to do.
Thanks so much! You've solved this for me. It seems like it was a copy & paste error on my part. I was thrown off by the fact that the documentation (pertinent forum's post) indicated errors in the code in 2011.
 
Old 07-22-2012, 08:42 PM   #9
ham bone
Member
 
Registered: Jul 2012
Location: Wisc
Distribution: Arch Linux dual boot with Vista
Posts: 39

Original Poster
Rep: Reputation: Disabled
273

Quote:
Originally Posted by 273 View Post
Looks like you probably missed the last single-quote off the end, if you execute the following it should work:
Code:
date -u +%W$(uname)|sha256sum|sed 's/\W//g'
I agree with jefro that it's an odd thing to ask new users to do.
Thanks so much! You've solved this for me. It seems like it was a copy & paste error on my part. I was thrown off by the fact that the documentation (pertinent forum's post) indicated errors in the code in 2011. I do not think that this forum has a thank you button
 
Old 07-22-2012, 08:44 PM   #10
ham bone
Member
 
Registered: Jul 2012
Location: Wisc
Distribution: Arch Linux dual boot with Vista
Posts: 39

Original Poster
Rep: Reputation: Disabled
Can't mark this thread as solved

I'd mark this thread as solved, but there are no tools to that. I searched the forum titles ("mark as solved"), but nothing came up and I stopped looking when the walmart post appeared.
 
Old 07-22-2012, 09:08 PM   #11
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by ham bone View Post
Thanks so much! You've solved this for me. It seems like it was a copy & paste error on my part. I was thrown off by the fact that the documentation (pertinent forum's post) indicated errors in the code in 2011. I do not think that this forum has a thank you button
You're welcome, the "why is it prompting me for more input" problem is one of those things that once you know it seems obvious.
As for marking this "solved" I think the move to "General" may have removed that option?

I read the thread on the Arch forum and I tend to agree with their stance -- after all people like ham bone will take the time to work out the answer and learn something, if they don't already know it.
 
Old 07-28-2012, 02:56 AM   #12
Mr. Alex
Senior Member
 
Registered: May 2010
Distribution: No more Linux. Done with it.
Posts: 1,238

Rep: Reputation: Disabled
Quote:
Originally Posted by jefro View Post
Seems rather complex way to join. What if a newbie wanted to join?
That's a filter. Newbie won't feel comfortable on Arch Forum...
 
Old 07-28-2012, 03:08 AM   #13
nixblog
Member
 
Registered: May 2012
Posts: 426

Rep: Reputation: 53
Quote:
Originally Posted by Mr. Alex View Post
That's a filter. Newbie won't feel comfortable on Arch Forum...
If a newbie gets passed that, then there is the install and entropy hell to deal with
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Forums that require registering/logging in to view image ARGGGH smeezekitty General 5 03-19-2011 10:41 PM
Registering new Linux Society Gun Linux User Groups (LUG) 2 11-15-2006 08:32 AM
Relationship between LQ forums & Distro forums impeteperry LQ Suggestions & Feedback 3 11-01-2005 02:20 PM
registering Linux joshknape Linux - Newbie 10 07-25-2005 06:11 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 04:05 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration