Who, Me? — Lessons from IT Mistakes

Who, Me? — Lessons from IT Mistakes
source: gettyimages
September 18, 2025

It's Monday morning, and a new week of opportunities awaits IT professionals everywhere. To kick off the week, The Register presents another edition of Who, Me? — our reader-contributed column that highlights workplace blunders and the accidental adventures of tech staff trying to survive them.

A Student's Server Slip-Up

This week, meet a contributor we'll call "Wilma." During her university days, Wilma volunteered with a student association's website team. After the team developed a new site version, her task was to upload it.

She planned to delete the old site first, then load the new code. However, she mistakenly accessed the web server's root directory, `/var/www`, instead of the specific site directory. As a result, she deleted all the websites hosted on the student association’s server.

> “I was quite new to Linux and wasn’t used to command line interfaces,” Wilma explained.

Fortunately, a knowledgeable colleague restored the websites from backups, but Wilma was barred from working on the site afterward.

Lessons Learned and Funny Fails

Wilma noted that after her mistake, she developed the habit of double-checking commands before executing them on Linux, emphasizing, “Linux will do exactly what you tell it, and it won't ask if you're sure.”

Share Your Tech Blunders

Have you made a major mistake with unfamiliar technology? The biggest lesson often comes from these stories. Click here to share your own mishap with Who, Me? — we'd love to hear your story!

---

Related links

By submitting, I confirm I have the right to share this link and I agree to link back to this article from the submitted page. Duplicate URLs are rejected. Up to 5 links per page.

GraphQL · 147 ms
query Q($id: Int!, $domain: Int!, $srcId: Int!, $hasSrc: Boolean!, $hasSelf: Boolean!) {
  self: qa_ai(where: {id: {_eq: $id}}, limit: 1) @include(if: $hasSelf) { id title text date }
  linksarticle: qa_ai(where: {domain: {_eq: $domain}, id: {_neq: $id}}, order_by: {id: desc}, limit: 8) { id title }
  linksbottom: qa_ai(where: {domain: {_neq: $domain}, id: {_lt: $id}}, order_by: {id: desc}, limit: 3) { id title domain }
  source: qa_ai(where: {id: {_eq: $srcId}}, limit: 1) @include(if: $hasSrc) { id title }
}
{
  "id": 6643886,
  "domain": 7,
  "srcId": 0,
  "hasSrc": false,
  "hasSelf": true
}