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.
|
7
|
|
|
|
|
|
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. |
|||
|
|
Anyone who answers something other than |
||||||||||||
|
|
|
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:
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 --:
Oh well, lesson learned. |
|||
|
|
Rebooting without updating LILO. No boot disks or internet handy to figure out how to fix it... Not quite up to rm -rf / |
||||
|
|
|
I once used
on an older Unix machine with the intention of killing all instances of |
|||
|
|
One of our sysadmins once did
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. |
|||
|
|
My answer does not involve rm in any way: tar cvzf /dev/hda |
||||
|
|
|
Instead of running
on a Debian box, I ran
... whilst I was connected over SSH. It meant a swift drive into the data centre was in order! |
|||
|
|
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. |
|||
|
|
|
|
Not on the scale compared to 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 I spent I don't know how long trying to figure out why my little |
||||
|
|
|
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. |
|||
|
|
|
|
I was cleaning out a local directory, so:
No problem, except that it left those little .xxx resource files, so:
which apparently follows .. and heads up the directory tree (oops) ... and of course I had root privilege |
|||
|
|
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. |
|||
|
|
|
|
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... |
|||
|
|
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. |
|||
|
|
mkfs on the wrong partition. |
|||
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
I did cp somefilename /dev/hdc1 |
|||
|
|
|
|
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 :) |
|||
|
|
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
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. |
|||
|
|
|
|
A long time ago, and someone else hit the return key, but...the net result was ' 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 '
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 " |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
||||
|
|
|
I edited the 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.
|
||||
|
|
|
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. :-) |
|||
|
|
|
|
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. |
|||
