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

vote up 1 vote down

I once mounted a remote SAMBA share to my home directory, thinking it would magically mount to some subdirectory within my home directory.

Basically it had the effect of rm -rf ~, except fixable with a cold boot. Phew!

link|flag
vote up 1 vote down

Network administration and IRC pissing contests don't go along that well.

During school holiday, two members of the student network's administration team were back home (separately). They both had modem access, and were chatting with one another on IRC. The IRC server was the students' too, hosted on the campus. For some reason, they started comparing bandwidths. The easy way to measure would be to ping flood the other one until either dropped off IRC.

That's until the younger one thought it could be a good idea to use the IRC server's better connection.

I was physically on the campus at that time, and I got woken up by a phone call from the older one. "Hey, err... would you mind ssh'ing to darkstar, here's the password, and please kill that ping -f process for me."

As it turned out, neither of them was first knocked off the IRC server that night. On the other hand, the IRC server had dropped the whole local network + campus + school off the net.

link|flag
vote up 1 vote down

Configuring a mail redirection daemon into an infinite loop:

The daemon didn't simply forward; it read the email, made a comment, and then created a new email.
Thereby, not being flagged as a dupe, and each iteration was larger than the previous one.

The resultant email was not only sent to address from which it was sent from,
but bcc'ed to others in a similar fashion.

:s

link|flag
vote up 1 vote down

This was many years ago, and the first time I ever tried Linux. :)

I'd installed Red Hat 9, but I was a bit annoyed that I had to sudo to access a number of files (keep in mind, first time, experimenting, whatnot). Eventually, I wanted to change that.

So, I switched to root, went to /, and did a chmod -R 0777 *.

That didn't go so well - though strictly speaking, the operation itself succeeded. Turns out, however, that a lot of things - including the X server - won't start if the permissions are wonky. Even getting to a shell was a bit of a problem.

Fortunately, I hadn't really done much with the install, so it was just a matter of reinstalling. I've learnt my lesson since then.

link|flag
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 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 0 vote down

I did cp somefilename /dev/hdc1

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 0 vote down

A scsi controller and drive were connected during an install/migration that should not have been. When installing I was not paying enough attention and when prompted to format and use all available disk space and to auto-create partitions. I was thinking 'sure this will take less time than manually arranging my partitions'. This subsequently erased and wrote over a 9gb drive that was full of files that there were no backups for (this was when 9gb was a lot).

link|flag
vote up 0 vote down

Many moons ago, in the wee hours of the morning, I sat there with a ssh terminal to my remote webserver, and was doing some cleaning up.

There were all these archives from old websites that were no longer live and I thought I'd copy them to my local machine, burn them to a CD and free up some space. The way I had the directory was as such:

/var/www # top level
/var/www/archives # archives directory
/var/www/html # this had all the live websites

I then ran:

rm -r /var/www <tab> <enter>

Notice what was wrong ?

Ran it for a few seconds, and then it hit me - I just ended up deleting all the websites. :(

link|flag
vote up 0 vote down

i love this :(){:|:&};: but i dont think this beats rm -rf /

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

I had a nasty keyboard with a big return key that extended to where ~ was meant to be, so when I tried to do "rm -rf ~" I lost a lot more than I intended.

It could have been a lot worse, I wasn't in / at the time.

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

A former college (no he wasn't fired) misconfigured a script made to send text messages to mobile phones. This resulted in the flooding of a handful customers' mobile phones with about 100 000 text messages before it was noticed and stopped.

link|flag
vote up 0 vote down

I recently could not figure out why my test program (compiled as "test") could not run on ubuntu. Read all about it here

link|flag
vote up 0 vote down

I was trying to identify a problem on a remote customer machine and wanted to see the local routing table, so I issued a route -v to get a verbose output. Unfortunately, I hit the -f instead which flushed the table and severed my connection.

Why use two keys so close to each other for "get verbose output" and "get rid of everything" :(

link|flag
vote up 0 vote down

This wasn't me, I swear.

killall - on a Tru64 cluster.

link|flag
vote up 0 vote down

My first linux install....

I installed on a partition, and then was reading along to where it suggested installing another version of some file having to do with command processing (long ago, can't remember the details). In those days, I had a habit of never typing "mv A B" while logged in as root, after having gotten the source and destination mixed up, so I typed "rm B" automatically, to be followed up with "mv A B". The second command never made it.

Fortunately, since I had just installed, I lost nothing but a bit of time reinstalling.

I was young and foolish back then. I'm older now, anyway.

link|flag
vote up 0 vote down

About 10yrs ago I was on an unused sever at my job, I forget the flavor of *nix, but I wanted to copy some files before I updated something, and made a typo that looked like

cp /usr/lib /usr/lib

which basically copies the folder over itself, which turn every file into 0 bytes, and because it was an OS folder, instant system death.

link|flag
vote up 0 vote down

My biggest one has probably been fsck -n on /home, a live ext3 filesystem. Hey, it's not going to make any changes, it should be safe, right? Apparently not. Forced me to reboot; the fsck on reboot "fixed" the damage by (a) noting every inode was not deleted, yet had no name and thus linking every inode to lost+found. With such useful names as the inode number. But I keep backups, and it was just my personal machine, so it wasn't that bad.

I once had fun with rm * .o (note the typo) a long time ago, but due to CVS, it wasn't that big a deal either.

Took down a small ISP once — including my connection to the router — once by breaking OSPF horribly. Managed to get enough static routes in to fix that w/o a drive to the colo.

link|flag
vote up 0 vote down
root: rm /dev/null

It really did remove it!

link|flag
vote up 0 vote down

I was trying to delete all of the temporary backup text files in /etc/ such as "blah~". What ended up being typed was:

cd /etc
rm -rf * ~

And of course there was no backup of the /etc folder. Darn space bar!

link|flag
vote up 0 vote down

I was working with a broken Fedora Core 6 installation and wanted to reinstall a broken package. Unfortunately, one of it's dependencies was libstdc++.so.

So, I tried to remove the package that contained that file and in doing so, I wasn't able to run any new commands to reinstall it...

link|flag
vote up 0 vote down

I wrote an automated script to build a bootable flash drive from a source tree on the hard disk. At the end it installs LILO on the drive.

One day I somehow screwed it up and it trashed the bootloader on my main hard disk. No problem, I thought, I'd just go and fix it with a livecd after I did the flash drive. So I got in there and saw LILO had stored a backup of the MBR in /boot/. I dd'ed it onto the hard drive and rebooted. That's where I found out that was the MBR from the flash drive.

link|flag
vote up 0 vote down

I had worked for several days on an important project and, tired, I just noticed that the machine had no swap activated. So I 'mkswap /dev/hda1' where hda was the /home partition...

link|flag
vote up 0 vote down

A friend of mine was in the administration team for the students' network. He was into computers, but a bit new to that thing called "Linux".

He was logged in on the server (let's call it darkstar), working on files mounted over Samba from the Windows server next room. Once he was through with his stuff, he decided the mount point wasn't canonical enough by his standards, he should move it someplace else. "Easy! I'll just unmount it from there and remount it in the new location."

Except unmount isn't how Linux calls it.

$ unmount /mount/point
bash: unmount: command not found
$ rmdir /mount/point
rmdir: `/mount/point': Directory not empty
$ rm -rf /mount/point
rm: cannot remove `/mount/point': Permission denied
$ su -
Password:
# rm -rf /mount/point

Turns out, he knew just enough to be dangerous. The funny part, retrospectively, is that it took long enough for him to get suspicious and think "that's not right". But he didn't know about ^C yet.

link|flag
vote up 0 vote down

I was modifying a network script for an embedded system where I was only able to send one command at a time. It was a painful^Wlearning experience in playing with sed and awk. Since I was unsure the resulting file would be correct I piped all my changes to a temporary file which I downloaded and checked for correctness after all was done. The file contents were all okay so I moved the script to the correct place and rebooted the system.

After waiting for what seemed like forever it started to dawn on me that the system was probably not coming back up again so I tried reproducing it locally which is what I should have begun with anyway. Turned out that the script needed the execute flag set and since I just piped changes into a temporary file and then moved it to the appropriate location it did not have the execute flag set.

Big oopsie and cost us some money since we had to send out a technician to replace the entire box. At least I learnt never to modify remote systems without trying it locally first.

link|flag
vote up 0 vote down

Tried to delete all coredumps in my homedir

find . -delete -name 'core'
link|flag

Your Answer

Get an OpenID
or

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