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

1 2 3 next
vote up 46 vote down check

Eager to fork() for the first time and having difficulty with a fork() tutorial, I incrementally commented out lines of error checking until, finally, the fork() call was executed. Inside a loop. With no error checking.

When my connection slowed to a crawl and then dropped, I assumed it was a networking problem. I tried again on another machine, one that happened to be the primary authentication server for our campus network. This time, my connection slowed and dropped and other people in the lab began having problems. Understanding dawned and my body slacked a moment.

Pulling myself together, I reported to my guru who insisted on a pompous walk to the campus network operations centre where the sysadmin, having already cut his lunch short, was duly chastised for allowing fork bombs to occur in the first place.

Humiliated and honoured in the same act, I grew a little older that day.

link|flag
show 9 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
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 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 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 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 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 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 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 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 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 15 vote down

I was cleaning out a local directory, so:

 rm -rf *

No problem, except that it left those little .xxx resource files, so:

rm -rf .*

which apparently follows .. and heads up the directory tree (oops)

... and of course I had root privilege

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

Wrote a shell script to recursively process all files in a directory and call an external application on them...only problem was instead of calling the external app I called the shell script again. Ended up with a script that processed a directory of 1000+ files recursively calling itself and brought the server down with what could be considered a denial of service attack. I knew something was wrong and would kill the script but I ran it a half-dozen or so times trying to figure out what was going wrong.

link|flag
vote up 0 vote down

Was doing an rm -r of a user's directory (that no longer worked at that place). That user had placed a hardlink in there that pointed to a group shared directory... Guess what... -r recurses through the linked directory erasing all the shared files instead of just removing the hardlink...

Luckily there weren't any changes yet that day so I could restore from the backup. Took awhile though, there was a LOT of data there...

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

On a Debian box, I was having trouble with a wonky package, and I needed to forcibly remove it. But I must have been tired, and accidentally removed dpkg instead of the other package.

"No problem" I thought, "I'll just re-add it"

Nope. On a Debian box where there is no package manager, it's sortof a "chicken and egg" scenario needing to get the package manager again. :)

Thankfully, I still had SSH access to the box (it was being remotely managed), and I was able to back up the system before doing a complete reinstall.

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

mkfs on the wrong partition.

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

Not my biggest, but my most recent was upgrading Ubuntu to Intrepid Ibex, and leaving for the weekend. I came back and it stopped updating; I restarted the computer and I guess all the packets didn't update properly, so now it doesn't boot up correctly; if at all!

link|flag
vote up 0 vote down

I changed the default SSH port on a new Slicehost VPS and then configured iptables...forgetting to open the new SSH port, which meant I was locked out of the VPS as soon as I logged out!

Fortunately Slicehost let you recreate a slice from their SliceManager Web interface.

link|flag
show 2 more comments
vote up 1 vote down

Backing up some files with tar, then blowing away the filesystem those files were on.

I hadn't tested the backup, and found out when I went to restore the backup that it didn't work.

I suppose this could apply to any OS, though.

link|flag
vote up 0 vote down

I did cp somefilename /dev/hdc1

link|flag
vote up 1 vote down

Meh, not a huge mistake, but a pretty new one when i first started, i had been Trying out Ubuntu and had it dual booting, back then i didn't understand how the MBR worked though so... well you can see what happened.

"Well time to get rid of Ubuntu, i will just use the gparted live cd to delete the partition and give it back to windows!"

needless to say, i had to find a way to reinstall the windows bootloader when GRUB started crying to me :)

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

so I have to admit I've seen a guy do a chown on a server box as root to a mostly unused account that effectively read

sudo
cd /some/far/off/directory/from/root
chown weakling_user *.*

this mostly only brought things on the server to a halt until it was cleaned up but as part of those who felt the effects I feel it may be one of those really big mistakes.

link|flag
vote up 4 vote down

A long time ago, and someone else hit the return key, but...the net result was 'rm -fr /'.

Fortunately, it was a new machine. Fortunately, they had a backup. So, it wasn't a complete disaster. But...

Needed to install some software. Needed a user created temporarily. Used menu system to create user. Since user was temporary, gave user home directory of '/'. Installed software. Used menu system to remove temporary user.

  • "Do you want to remove home directory?"
  • "Yes"

It takes a while for everything to grind to a halt, but /etc and /unix and /bin are very early on the list of removed files and directories.

Recovered system from backups. Created temporary user with real home directory, not "/", and reinstalled software, re-removed user, etc. Delay - 4 hours or so. Could have been so much worse.

link|flag
vote up 2 vote down

I left a space in a mv command, and ended up moving / to /home/username . On a production mail server. In the middle of the business week.

link|flag
vote up 0 vote down

rm -rf on my home folder during my industrial placement. It was accidental, had a * in the wrong place. Learned the value of using CVS.

link|flag
vote up 0 vote down

rm -rf /tmp backfired on me one day when another sysop somehow/someway remounted an important partition to /tmp/homes and symlinked that to where it should have been ( in this case /home ).

Always fun as a junior Admin to nuke your colleges student accounts. Ever since then I use find | less before using rm -rf.

link|flag
vote up 2 vote down

In OS X, I wanted to move my /users folder to an external hard drive. So I naively moved the folder over, then created a symlink on the original drive pointing to the new location. Everything from iTunes to my Word Processor went haywire. I'm still not really sure why it didn't work.

link|flag
1  
@Joshua & @Schof: OS X doesn't have the standard UNIX/Linux symlinks. If you do man ln on a Mac terminal, you'll see why. – A. Scagnelli Jul 1 at 17:01
show 1 more comment
vote up 7 vote down

I edited the iptables configuration file on our Linux firewall server and deployed the change. Unfortunately I had made a mistake in the configuration and I blocked all network traffic to our company.

And doubly unfortunately, I was logged in remotely via ssh. Of course my ssh session immediately terminated. I had to call our system administrator, who was already driving home for the day. He turned around, drove to our data center and fixed it at the console.

  • Lesson 1: only the IT department should have root access on critical servers.

  • Lesson 2: never do anything on the firewall server remotely, even if you are the authorized IT expert.

  • Lesson 3: bake cookies for the system administrator in penance when you screw up.

link|flag
2  
I made that same mistake once, the only difference was that I was the one who had to drive in and fix it. Now, before I deploy new firewall rules remotely, I set an "at" job to put the old rules back in place a minute later just in case and then cancel it if all goes well. – Robert Gamble Nov 11 '08 at 4:28
show 1 more comment
vote up 1 vote down

rm -r'd a dir I didn't mean to, moved libc on a live system and watched it panic(), screwed the bootloader, symlinked something to /bin/sh which was linked to /usr/lib stuff (and I wondered why init cries: /usr not mounted after init/rc). And many more I dont remember. Unix gives rope for sure. :-)

link|flag
vote up 2 vote down

My biggest involved root permissions and cdrecord, back in 1997. Root was required to get real-time scheduling which was definitely required on a Pentium 166 burning CDs. The cdrecord command did not accept /dev/hdc as a valid destination. Instead you had to use direct SCSI addressing, something like (7,0,0) as I recall.

And that was the end of the NT installation on that machine, which was on the second hard drive, which made the CD-R the third device.

Luckily Linux survived.

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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