You should log in as a normal user also you've a root account, too. If you need to do anything as root you could either make you root locally until an exit by
> su
password_of_root
or else temporarily as
> sudo command_that_requires_root_user
password_of_root (some unixes use the user password here)
if you're enabled to use sudo. Sudo is normally active for some time (e.g. 5 minutes), so that the next sudo command in that time interval may not request the password again.
In general: Never change the user ID by hand. Give users privileges by groups if needed.
Quote:
Original post by johnnyBravo
Like are there any issues about this that is covered somewhere, eg how to prevent people from doing such?
Don't give them the root password!!