this post was submitted on 17 Jun 2023
43 points (97.8% liked)
Programmer Humor
19480 readers
178 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Hey not a programmer or Linux user here, what does this do?
It is a command that does three things:
sudo rm -rf --no-preserve-root /
part.:(){ :|:& };:
is what's called a Fork Bomb. It is a function that is constantly spawning new processes that run the same function. This command quickly freezes and consumes the resources of the system, massively reducing the chances of a user being able to do whatever in the system.Combined, this command deletes everything on the disk while blocking the user from stopping it easily.
Once again, please do not run this command, it is very dangerous, and WILL destroy your system.
Alternative decom method