> Linux won't stop you if you try to use a command that deletes every file on your PC ("sudo rm -rf /").
It will definitely stop you from running that command because of "--preserve-root" that is enabled by default, if you want to break your system you have to opt out of it. Just don't try to put an asterisk after, pathname expansion will be a different case ("rm -rf /*").
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
And yes, many of the old-school (and entry level) tuts were from the DOS era. ORC's?