sudo rm -rf /* What it actually equals sudo = run as root (power to do everything) rm = remove -rf = recursive (all sub directories and files), force (no comfirmation) /* = root directory, and everything in it, so every file on your system Basically it is a command to delete every file on your system, with no checks or confirmation.
sudo rm -rf /*
What it actually equals
sudo = run as root (power to do everything)
rm = remove -rf = recursive (all sub directories and files), force (no comfirmation)
/* = root directory, and everything in it, so every file on your system
Basically it is a command to delete every file on your system, with no checks or confirmation.
I thought it'd be something like that. Serves anyone who does it right!
@M_V started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
I thought it'd be something like that.
Serves anyone who does it right!