Possible Duplicate:
What's wrong with always being root?
The very first rule I've been taught about Linux is never to use root as your main user and I was wondering why
Possible Duplicate:
What's wrong with always being root?
The very first rule I've been taught about Linux is never to use root as your main user and I was wondering why
Because root is the superuser. As root you can do anything, as such it is easy for you or someone to kill your system.
Because if you type the wrong thing in as root, it can have disasterous consequences:
rm -rf .. / # ONOES! A SPACE!
Because if you make a small mistake as a non-root user, there won't be any extremely fatal outcomes like:
Whilst you can make the mistakes with sudo, often you will think twice before issuing a command as you need to enter your password.
The downfall of Windows security has always been users logging in with Administrator privileges. UNIX equivalents have always had better security because it does not allow root to log in as a normal user. If you need to do something, you run that with escalated privileges (sudo or su) and then you go back to a normal user.