-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.
disables the wipe your system protection. Without this option rm can only wipe current directory if you input / as a location.
-f
means force, will not prompt the user for any reason.
-r
means recursive, rm will enter any directory selected and delete all the contents.
rm -rf --no-preserve-root /
The above command WILL wipe your system. It will delete all files your user has access to, and it will give you no feedback warning you what’s going on. Be careful.
Oh jeebus! Hahaha. Thank you so much for the explanation! I am extremely careful in terminal. I don’t find myself there often now that I’ve got my web apps set up.
Now to learn how to successfully install something using Docker… There’s so many VARIABLES in Portainer to get something installed! I have not had one success as of yet, but I’m only on my first week of learning. Got it running as a file server successfully, though!
Every TV in my house now gets King of the Hill RANDOMIZER and it’s bliss.
I’m very new to Linux; could you explain what this does for me?
-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 ranrm -r /
, everything on your system would be deleted, provided the user had permissions. Now,/
is treated specially andrm
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.Thank you! That’s funny and horrifying, as a complete newbie.
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 :)
You should try dd if=/dev/random of=/dev/sda some time :P
Should I ask what it does before or after I use it? :)
Fills the hard drive with randomly-generated garbage.
Specifically, most likely the OS hard drive, since that’s usually sda
disables the wipe your system protection. Without this option rm can only wipe current directory if you input / as a location.
means force, will not prompt the user for any reason.
means recursive, rm will enter any directory selected and delete all the contents.
The above command WILL wipe your system. It will delete all files your user has access to, and it will give you no feedback warning you what’s going on. Be careful.
Oh jeebus! Hahaha. Thank you so much for the explanation! I am extremely careful in terminal. I don’t find myself there often now that I’ve got my web apps set up.
Now to learn how to successfully install something using Docker… There’s so many VARIABLES in Portainer to get something installed! I have not had one success as of yet, but I’m only on my first week of learning. Got it running as a file server successfully, though!
Every TV in my house now gets King of the Hill RANDOMIZER and it’s bliss.