« Blogspot Watch |
Main
| The Dots Continue To Connect »
A Brilliant Yet Simple War Strategy
[warning: amusing to unix geeks only]
$ su -
Password: *********
# rm -rf /bin/laden
[Thanks to Malcolm Street from sci.space.policy]
Posted by Rand Simberg at September 24, 2002 10:54 AM
TrackBack URL for this entry:
http://www.transterrestrial.com/mt-diagnostics.cgi/327
Listed below are links to weblogs that reference
this post from
Transterrestrial Musings.
Comments
Will I have to study Unix to get it, or will us Windows drones get a translation?
Posted by Kevin McGehee at September 23, 2002 10:58 AM
Well, it's tough to describe in twenty-five words or less. /bin is a standard unix directory that contains binary files (executable programs). So if we can remove the subdirectory /bin/laden, then the war should be over. But it's a privileged directory, owned by the system administrator. So if you have a $ prompt, you're just a regular user, and can't do it. So you 'su' (switch user) and the minus sign means to switch to the root (administrator). Then you have to enter the root password to complete the process. When you get the # prompt, you're now root. Then you rm (remove) the directory. The -rf flags are to remove the directory itself, with all of the subdirectories and files it contains.
Isn't that hilarious? I'm still holding my sides. Guess you had to be there...
Posted by Rand Simberg at September 23, 2002 11:04 AM
Thinkgeek.com sells a shirt with this on it, I believe.
Posted by eli at September 23, 2002 12:16 PM
Here's another side splitter:
# chmod a+x /bin/laden
Posted by mike earl at September 23, 2002 12:19 PM
A friend of mine, Harsha Setty, had a T-shirt with this on it at least six months ago. It is really funny, at least to Unix geeks.
Posted by John Thacker at September 23, 2002 03:58 PM
I'm really missing out.
Posted by Kevin McGehee at September 23, 2002 04:41 PM
That's a good one, too, but it would be more subtle if it were:
# chmod 777 /bin/laden
Posted by Rand Simberg at September 23, 2002 05:03 PM
booooo
Posted by R Warfield at September 23, 2002 06:42 PM
# chmod 777 /bin/laden
would be :
# chmod a+rwx /bin/laden
Which kind of spoils the joke.
Posted by Kathy K at September 24, 2002 07:09 AM
Sorry, right.
# chmod 111 /bin/laden
Of course,
# chmod 666 /bin/laden
would have more meaning for Christians, but then we could only read and write him--we couldn't all execute him...
Posted by Rand Simberg at September 24, 2002 07:35 AM
nohup rm -rf /bin/laden &
See ya, binny...
Posted by mojo at September 24, 2002 02:48 PM
Shouldn't that be:
chmod 0777 /bin/laden
Posted by Dean Douthat at September 24, 2002 07:35 PM
I want that t-shirt. Heh heh.
Posted by Andrea Harris at September 24, 2002 09:15 PM
chmod a+x /bin/laden
chmod=change file permissions
a+x=add the executable file permission for users even if they do not own the file
So the translation is:
make /bin/laden executable by anyone
Posted by at September 29, 2002 11:12 AM
Post a comment