Quote:
|
could it be more dangerous the logging into admin all the time with win2k
|
Yes it can be much dangerous then logging in as admin on a 2k pro box. with Unix/Linux all it takes is simply adding a space where you dont want it and you can delete the entire hdd.
lets say you wanted to delete all files that have .text on the end. you wound run the command
rm *.text. lets say that you acidently hit the space key between the '*' and the '.' so you end up with the command
rm * .text you would get the message file not found if you are loged in as root. this is because it interprited the space as a seperator char so it deleted everything and then tried to delete the file
.text. you would not get any warning messages that you are about to delete everything either.
can you see how it can be dangerous to be loged in as root all the time?