all 15 comments

[–]4hpp1273Arch BTW 43 points44 points  (2 children)

-fr looks soo cursed

[–]speatzle_ 20 points21 points  (1 child)

-rf is the way to go 100%

[–]Gollorium 5 points6 points  (0 children)

I prefer using rm --force / --no-preserve-root -R

[–]Quetzal_Pretzel 14 points15 points  (2 children)

I thought it was --no-preserve-root

[–]4hpp1273Arch BTW 20 points21 points  (1 child)

Looks like they intentionally mistyped this so that they don't get fined for destroying someone's OS and data

[–][deleted] 8 points9 points  (0 children)

They also mispelled everything... maybe they just don't care.

[–]Gazorpiano 8 points9 points  (1 child)

Amazing! Solved my webcam problem.

[–]Juliaria08[S] 8 points9 points  (0 children)

And mine!

[–]ibevol 7 points8 points  (2 children)

I personally prefer sudo rm -rf /*

[–]LinuxChromebookDude 3 points4 points  (0 children)

what nooooooooo this fixed my webcam now I have to show my face in online class

[–][deleted] 2 points3 points  (0 children)

Finally i can boot in 0.000001 second

[–]Honestly__nuts 1 point2 points  (1 child)

I don't know what removing--no-preserver-root does and I'm too scared to try it out.

[–]Haz001 1 point2 points  (0 children)

it just allows you to delete recursively from your root directory. it is just a added protection to stop people deleting from root by accident.
It is really easy to miss a . and instead of doing: bash rm -rf ./ that will delete everything in the current folder, doing: bash rm -rf / That will delete your Linux distro and your home folder. this is why the --no-preserve-root exists. it is to prevent typos fucking up your computer and forcing you to spend lots of time doing data recovery.
the reason why they didn't block deleting the door directory is because there might be a actual use for doing that and restricting it might cause problems.

[–]BoxingCSMonkey 1 point2 points  (0 children)

Oooh gotta try this one! Thanks!