vote up 20 vote down star
7

So I was thinking about bloopers I've made or have seen made in a *nix systems and was wondering what others think the worst blooper they made was? I couldn't find a similar question already asked but I can't believe this isn't a copy question but then again may users are so perfect the idea of a blooper is impossible. Fire away.

flag
show 2 more comments

70 Answers

prev 1 2 3
vote up 4 vote down

I once had to update an important shared library - libgcc, I believe it was. I went about it in the most brilliant way possible - I compiled the new library, then cd'd to the directory where the old libgcc was (yes, the one being currently used). I then did "cp newlibgcc oldlibgcc".

What's this? Oh right, I have to be root to overwrite a file! "sudo su", then "cp newlibgcc oldlibgcc"

Instantly locked up my box, as you can imagine.

link|flag
vote up 5 vote down

Not on the scale compared to rm -rf but...

When I was learning *nix, I was bouncing between at least three very different OSes and used my habitual name for a quick and dirty test C program -- and named it test

I spent I don't know how long trying to figure out why my little Hello World equivalent wouldn't output anything. Finally, I asked my resident *nix expert and he laughed so hard he cried before pointing out that test was a builtin and ahead of my dir in the path.

link|flag
1  
That's why proper Unix systems do not have "." in their PATH, and make you use ./test instead ;-). – sleske Jun 30 at 22:27
show 2 more comments
vote up 4 vote down

I ran wuftp on my first Slackware install.

Result = rooted :(. Fortunately the idiot who rooted me setup an IRC bot and decided to store the log file in my only user directory. It only took me a week to notice the 8 GB file sitting on a whopping 20GB drive. They were nice enough to include their IRC handle and origin IP addy in the log file.

link|flag
vote up 28 vote down

Instead of running

/etc/init.d/networking restart

on a Debian box, I ran

/etc/init.d/networking stop

... whilst I was connected over SSH.

It meant a swift drive into the data centre was in order!

link|flag
show 1 more comment
vote up 17 vote down

My answer does not involve rm in any way:

tar cvzf /dev/hda

link|flag
1  
Yep. It was my first time trying to make a backup with tar and I got the input and output locations reversed... – Dave Sherohman Nov 10 '08 at 18:23
show 2 more comments
vote up 2 vote down

One of our sysadmins once did

rm -f *

at root, logged in as root (!).

Fortunately, not rm -rf.

So all the symbolic links disappeared, including (from memory) /bin. Which made finding /bin/sh a bit difficult when logging on. So no logons.

Then the user logged out as root (but was still logged in as the user. This was significant, although, not, I think, essential)

I used to use this as an interview question: how do you recover from this situation? (We did, eventually, one of the other sysadmins sorted it)

Solaris, in about 1992/3, if it makes any difference.

link|flag
show 9 more comments
vote up 4 vote down

I once used

killall command

on an older Unix machine with the intention of killing all instances of command. It turned out that on this machine, the killall command killed all processes on the machine in preparation for shut down instead of the more modern version which kills all instances of a specific process. Whoops.

link|flag
show 3 more comments
vote up 6 vote down

Rebooting without updating LILO. No boot disks or internet handy to figure out how to fix it...

Not quite up to rm -rf /

link|flag
1  
Oh, I remember doing this once. Very, very annoying. – Chris Charabaruk Nov 11 '08 at 2:44
show 1 more comment
vote up 26 vote down

First, accidentally creating a file in my home dir with the name "-f". Which made it a bitch to remove cause -f is a flag. So I figured I would do some thing like this while in my home directory:

rm -i *

And just say no to all the ones I wanted to keep.

Unfortunately, -f overrides -i ... bye bye home dir:(.

One correct solution is to use --:

rm -- -f

Oh well, lesson learned.

link|flag
1  
An easier solution is rm ./-f – Alnitak Nov 10 '08 at 17:37
1  
"./" is the standard Unix-idiom when you've got a file which looks like a flag, not only in the rm case. – JesperE Nov 10 '08 at 19:00
show 2 more comments
vote up 49 vote down

Anyone who answers something other than rm -rf / is lying ;)

link|flag
1  
Mine almost is that ;) – Evan Teran Nov 10 '08 at 17:19
1  
Never done that. Yet. ;) – Chris Lutz Feb 22 at 6:13
1  
@Chris: Just wait until you someday type "rm -Rf / some/directory/you/want/to/remove". :-P I learned to "cd" as close to my target as possible before executing an rm -Rf command back at a job where the keyboard stuck strange and they wouldn't replace it... – Michael Trausch Feb 26 at 23:23
show 9 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.