568

I accidentally untarred archive intended to be extracted in root directory, which among others included some files for /etc directory.
I went on to rm -rv ~/etc, but I quickly typed rm -rv /etc instead, and hit enter, while using a root account.

top 50 comments
sorted by: hot top new old
[-] partial_accumen@lemmy.world 192 points 2 months ago

Reusing names of critical system directories in subdirectories in your home dir.

[-] underscores@lemmy.zip 55 points 2 months ago

I agree with this take, don't wanna blame the victim but there's a lesson to be learned.

[-] neatchee@piefed.social 67 points 2 months ago* (last edited 2 months ago)

except if you read the accompanying text they already stated the issue by accidentally unpacking an archive to their user directory that was intended for the root directory. that's how they got an etc dir in their user directory in the first place

load more comments (3 replies)
load more comments (10 replies)
[-] quelsh@programming.dev 114 points 2 months ago

HAH rookie, I once forgot the . before the ./

[-] Klear@quokk.au 30 points 2 months ago
load more comments (1 replies)
[-] BCsven@lemmy.ca 58 points 2 months ago

Oof. I always type the whole path just because I have made this mistake before.

[-] BillyClark@piefed.social 15 points 2 months ago

That doesn't protect you from typos.

rm -rv /home/schmuck /etc

"Whoops, I accidentally added a space."

I have three ways around this:

  1. ls ~/etc ... <press up arrow, replace ls with rm -rv>
  2. ls ~/etc ... rm -rv !$
  3. Add the commands to a simple script and use variables to remove the danger of a command line.
load more comments (4 replies)
[-] MonkeMischief@lemmy.today 57 points 2 months ago

OOOOOOOOOOOF!!

One trick I use, because I'm SUPER paranoid about this, is to mv things I intend to delete to /tmp, or make /tmp/trash or something.

That way, I can move it back if I have a "WHAT HAVE I DONE!?" moment, or it just deletes itself upon reboot.

[-] MonkderVierte@lemmy.zip 15 points 2 months ago* (last edited 2 months ago)

Just get a cli trash tool and alias it to rm. Arch wiki

[-] MonkeMischief@lemmy.today 23 points 2 months ago* (last edited 2 months ago)

That's certainly something you can do! I would personally follow the recommendation against aliasing rm though, either just using the trash tool's auto complete or a different alias altogether.

Reason being as someone mentioned below: You don't want to give yourself a false sense of security or complacency with such a dangerous command, especially if you use multiple systems.

I liken it to someone starting to handle weapons more carelessly because the one they have at home is "never loaded." Better safe than sorry.

Lol we should have "rules of rm safety":

  • Assume rm is always sudo unless proven otherwise.
  • (EDIT)Finger should be off the Enter key until you are certain you are ready to delete.
  • Never point rm at something you aren't willing to permanently destroy.
  • Always be aware of your target directory, and what is recursively behind it!
load more comments (3 replies)
load more comments (10 replies)
[-] TomMasz@lemmy.world 47 points 2 months ago
[-] protogen420@lemmy.blahaj.zone 24 points 2 months ago

instructions on clear, switched to vi mode in bash and cant exit

load more comments (1 replies)
load more comments (1 replies)
[-] Egonallanon@feddit.uk 46 points 2 months ago

Let he who has not wrongly deleted system critical files in Linux cast the first stone.

[-] KickMeElmo@sopuli.xyz 28 points 2 months ago

Amateurs. You all did it accidentally. I deleted system critical files intentionally believing it was beneficial.

[-] HereIAm@lemmy.world 14 points 2 months ago

/dev is just all bloat with stupid recursive directories

load more comments (2 replies)
[-] merc@sh.itjust.works 11 points 2 months ago

I can do one better. A similar 'rm' command but while a Windows disk was mounted read/write. So, 2 OSes damaged in one command.

load more comments (1 replies)
load more comments (4 replies)
[-] ZomieChicken@sh.itjust.works 43 points 2 months ago

Great! Now you can enjoy that freshly assembled directory feeling, knowing that now you only have the configs in there that you need.

[-] Thrydwulf@lemmy.today 36 points 2 months ago

“Just a little off the top please”

[-] SapphironZA@sh.itjust.works 35 points 2 months ago

This is why you should setup daily snapshots of your system volumes.

Btrfs and ZFS exist for a reason.

load more comments (8 replies)
[-] jjj@lemmy.blahaj.zone 26 points 2 months ago

Is there any reason to use a root account? If you had used sudo for each privilege needing command in stead it would have stopped you.

[-] thisbenzingring@lemmy.today 30 points 2 months ago

Is there any reason to use a root account?

if you just borked your /etc and need to rebuild because you don't have sudo anymore

load more comments (1 replies)
load more comments (3 replies)
[-] bjoern_tantau@swg-empire.de 24 points 2 months ago

Whelp, time to restore the latest snapshot.

[-] Loce@lemmy.world 23 points 2 months ago

Things like these are right of passage on Linux :)

[-] ICastFist@programming.dev 22 points 2 months ago

So good to see that, even in 2026, Unix Haters' Handbook's part on rm is still valid. See page 59 of the pdf

load more comments (13 replies)
[-] woelkchen@lemmy.world 21 points 2 months ago

Your first mistake was attempting to unarchive to / in the first place. Like WTF. Why would this EVER be a sane idea?

[-] user224@lemmy.sdf.org 12 points 2 months ago

I don't know if it should be a bad thing. Inside the tar archive the configs were already organized into their respective dirctories, this way with --preserve-permissions --overwrite I could just quickly add the desired versions of configs.
Some examples of contents:

-rw-r--r-- root/root      2201 2026-02-18 08:08 etc/pam.d/sshd
-rw-r--r-- root/root       399 2026-02-17 23:22 etc/pam.d/sudo
-rw-r--r-- root/root      2208 2026-02-18 09:13 etc/sysctl.conf
drwx------ user/user         0 2026-02-17 23:28 home/user/.ssh/
-rw------- user/user       205 2026-02-17 23:29 home/user/.ssh/authorized_keys
drwxrwxr-x user/user         0 2026-02-18 16:30 home/user/.vnc/
-rw-rw-r-- user/user        85 2026-02-18 15:32 home/user/.vnc/tigervnc.conf
-rw-r--r-- root/root      3553 2026-02-18 08:04 etc/ssh/sshd_config

Keeps permissions, keeps ownership, puts things where they belong (or copies from where they were), and you end up with a single file that can be stored on whatever filesystem.

[-] vapeloki@lemmy.world 9 points 2 months ago

I assumed something like this. That's a perfectly valid usecase for a tar extracted to /.

But I love it how people always jump to the assumption that the one on the other end is the stupid one

[-] SkaveRat@discuss.tchncs.de 11 points 2 months ago

that was my reaction when I saw a coworker put random files and directories into / of a server

I feel like some people don't have a feeling about how a file system works

load more comments (8 replies)
[-] dunz@feddit.nu 16 points 2 months ago

Be happy that you didn't remeber the ~ and put a space between it and etc😃.

[-] statelesz@slrpnk.net 15 points 2 months ago
[-] ohshit604@sh.itjust.works 24 points 2 months ago

alias rm=“echo no”

[-] slothrop@lemmy.ca 15 points 2 months ago* (last edited 2 months ago)

You have a backup tho', right?

...., right??

[-] rumba@lemmy.zip 9 points 2 months ago

The only backups i have are /etc/nixos/configuration.nix and ~ the rest and die in a fire

load more comments (1 replies)
[-] lavander@lemmy.dbzer0.com 14 points 2 months ago

Genuinely curious… why using root for operations like these?

[-] Viceversa@lemmy.world 13 points 2 months ago

To feel the thrill

[-] MunkyNutts@feddit.online 13 points 2 months ago
[-] justme@lemmy.dbzer0.com 13 points 2 months ago

Reminds me in the t-shirt: "don't drink and root"

[-] tulliandar@lemmy.world 13 points 2 months ago

Next time:

ls ~/etc
rm -rv !$
load more comments (3 replies)
[-] dadarobot@lemmy.sdf.org 12 points 2 months ago
[-] Vintor@retrolemmy.com 19 points 2 months ago

I accidentally untarred archive intended to be extracted in root directory

load more comments (1 replies)
load more comments (1 replies)
[-] Treczoks@lemmy.world 12 points 2 months ago

Ahh, the rites of passage!

[-] kertain@sh.itjust.works 12 points 2 months ago

I am new to Linux and just getting somewhat comfortable as my daily driver, very proud of myself that I got the joke pretty quickly :)

[-] rushmonke@ttrpg.network 10 points 2 months ago* (last edited 2 months ago)

I fucking hate using rm for these very reasons.

There's another program called "trash-cli" that gives you a trash command instead of going straight to deletion.

I'm not sure why more distros don't include it by default, or why more tutorials don't mention it.

[-] MonkderVierte@lemmy.zip 9 points 2 months ago* (last edited 2 months ago)

Yeah, same thing like with unclosed bottles, cup too close to the table edge, etc.: Accidents that can hapen, will happen.
Better name them something else in your user dir.

And yes, painful experience.

[-] konomi@piefed.blahaj.zone 9 points 2 months ago

Switch from using rm to trash.

load more comments (2 replies)
load more comments
view more: next ›
this post was submitted on 18 Feb 2026
568 points (99.1% liked)

linuxmemes

31169 readers
1654 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don't come looking for advice, this is not the right community.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS