up vote 23 down vote favorite
9
share [g+] share [fb]

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.

link|improve this question
show 2 more comments
feedback

72 Answers

1 2 3
up vote 52 down vote accepted

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|improve this answer
show 9 more comments
feedback

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

link|improve this answer
1  
Mine almost is that ;) – Evan Teran Nov 10 '08 at 17:19
3  
A former coworker had a cron job to periodically delete files form a temp directory: "cd foo; sudo rm -rf ./*;" . One day, directory foo didn't exist and cd failed. He was running this from / . Worst part was that we'd recover from backup, and cron would run again. – SquareCog Nov 15 '08 at 16:39
3  
Never done that. Yet. ;) – Chris Lutz Feb 22 '09 at 6:13
2  
@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 '09 at 23:23
show 10 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
1  
An easier solution is rm ./-f – Alnitak Nov 10 '08 at 17:37
4  
"./" 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
feedback

My answer does not involve rm in any way:

tar cvzf /dev/hda

link|improve this answer
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
feedback
 # source ~/.bash_history

The TAB completion got me. I wanted to source ~/.bashrc and sourced ~/.bash_history instead (root didn't have a .bashrc)

link|improve this answer
1  
Whoa, that's subtle. – ashawley Apr 1 '09 at 22:51
2  
~/.bash_history contains a chronological list of bash commands previously executed. The source command executes all commands in this file all over again. So in practice it could do pretty much anything, and you'd be very lucky if none of it is bad! – Lars Haugseth Jun 30 '09 at 22:17
show 1 more comment
feedback

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|improve this answer
1  
But modern versions of rm exclude .. anyway. – Darron Nov 10 '08 at 18:42
2  
Obviously, that wasn't always the case. rm probably excludes it now because of incidents like this. In fact, I'll bet whoever patched rm to exclude .. probably deleted everything on his system first. – Chris Charabaruk Nov 11 '08 at 2:43
show 2 more comments
feedback

Ancient Unix machine where you had to be root to write to a tape.
"tar cvf /dev/rmt0" every night to write the data, take the tape out store it carefully.
Discover that the command works perfectly without a tape loaded!
Discover a large file called "rmt0" in the /dev directoy.
Discover that the tape drive on this version of Unix is called "rst0"

link|improve this answer
feedback

A former manager of mine got curious when he saw the strange string :(){ :|:&};:& on the whiteboard in our office and asked me what it was about. I told him it was a shell command to hog memory on unix systems. He wouldn't believe me it would actually parse, so he typed it in on our Solaris box.


It took him 15 minutes to catch the unix system administrators over the phone. It took them 15 minutes to realize they wouldn't telnet/ssh in, even as root. It took some additional 30 minutes for the box to reboot and start accepting users again.

Their conversation on the phone was something.

 - "What the hell is going on?  What have you done?!"
 - "Errr... we've got 'some process' gone wild, could you please kill it?"
 - "Trying to, but... hey!  I can't even connect to... does it even ping anymore?"

Countless mandays lost. The next week, users had process and memory capping.

link|improve this answer
4  
The ":(" at the beginning of the magic forkbomb string says it all. – A. Scagnelli Jul 1 '09 at 16:57
show 1 more comment
feedback

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

Not quite up to rm -rf /

link|improve this answer
1  
Oh, I remember doing this once. Very, very annoying. – Chris Charabaruk Nov 11 '08 at 2:44
1  
Oh LILO, how I don't miss you. – James McMahon Nov 12 '08 at 15:59
feedback

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|improve this answer
5  
That's why proper Unix systems do not have "." in their PATH, and make you use ./test instead ;-). – sleske Jun 30 '09 at 22:27
show 2 more comments
feedback

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|improve this answer
3  
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
feedback

My worst mistake was in writing a script that sets up a bunch of directories based on the input.

One of the commands ran this:

rm -rf $4/$5

The problem is that later on I forgot how many parameters the script took, so I just called it with no parameters without thinking about it.

So I ended with this... run as root of course:

rm -rf /

Lesson learned: Always test sanitize inputs, and have a default function to print usage!

link|improve this answer
feedback

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|improve this answer
show 3 more comments
feedback

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|improve this answer
show 1 more comment
feedback

mkfs on the wrong partition.

link|improve this answer
show 2 more comments
feedback

I did:

rm * ~

(deleted all files in the current directory)

instead of:

rm *~

(delete all temporary files created by my editor)

before committing changes to the repository.

link|improve this answer
2  
Used to happen a lot, until I started using this: alias rmbak="rm ./*~" – Lars Haugseth Jun 30 '09 at 22:39
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

A variant of the killall stories. A mate was in the habit of running

kill -9 -1

to terminate all his running processes and logout. It became so much of a habit that he did it while logged in as root on a clients production machine.

link|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
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 '09 at 17:01
show 2 more comments
feedback

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|improve this answer
1  
Ah, just remembered. The culprit logged out as root (but not out of the box) - this is connected with how we solved it, but I think the solution works in other ways. Su didn't work, and it was the days before sudo. – Paul Nov 10 '08 at 19:08
1  
It was a long time ago and I may misremember, but we ftp'd (as root) back into the box from the session that was still active, ten created a bin directory, copied sh into it, and after that could log in as root. – Paul Jan 18 '09 at 9:39
show 8 more comments
feedback

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|improve this answer
1  
"And that was the end of the NT installation on that machine" -- off-topic. This discussion is about bloopers. – Windows programmer Nov 11 '08 at 3:30
show 3 more comments
feedback

While testing the security of my IRC bot, I was so eager to see what would happen if I'd push it to the max. Those lines are another user's log:

<LiraNuna> !fq ["shell exec 'sudo rm -rf /'"]
* Sintia has quit (Remote host closed the connection)
* LiraNuna has quit (Remote host closed the connection)

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback
1 2 3

Your Answer

 
or
required, but never shown

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