You must log in or register to comment.
c:/
Wait isn’t it c:\ ?
sudo rm -rf /
always remove the french language pack
sudo rm -fr /
Make sure to also completely delete the word roots.
sudo rm -fr /* --no-preserve-root
You only need the
--no-preserve-root
flag when acting on/
.So the correct code would be either
sudo rm -fr /*
orsudo rm -fr / --no-preserve-root
(more appropriate for your ‘advice’)