this post was submitted on 09 Aug 2023
857 points (98.5% liked)

linuxmemes

20798 readers
782 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] droans@lemmy.world 36 points 1 year ago (1 children)

-r means delete recursively. rm will by default only remove files, but with this flag, it'll also delete all the folders, subfolders, and the files in those.

--no-preserve-root disables a security check. A few years ago, this flag didn't exist. If you ran rm -r /, everything on your system would be deleted, provided the user had permissions. Now, / is treated specially and rm will refuse to perform a recursive delete on it without the --no-preserve-root flag.

-f means force and disables any prompts.

rm -rf --no-preserve-root / would delete every file on your system.

[–] Rai@lemmy.dbzer0.com 15 points 1 year ago (1 children)

Thank you! That’s funny and horrifying, as a complete newbie.

[–] President_Pyrus@feddit.dk 7 points 1 year ago (1 children)

I installed Ubuntu on a spare computer a few weeks ago just to rm -rf / it. It was quite fun seeing the os slowly killing itself :)

[–] Revan343@lemmy.ca 5 points 1 year ago* (last edited 1 year ago) (1 children)

You should try dd if=/dev/random of=/dev/sda some time :P

[–] President_Pyrus@feddit.dk 3 points 1 year ago (1 children)

Should I ask what it does before or after I use it? :)

[–] WhiskyTangoFoxtrot@lemmy.world 5 points 1 year ago (1 children)

Fills the hard drive with randomly-generated garbage.

[–] Revan343@lemmy.ca 3 points 1 year ago

Specifically, most likely the OS hard drive, since that's usually sda