on a UNIX OS, ex.: OpenBSD (used as a desktop by me only), which one is the best choice in regards to security. I want to run desktop operations (like pkg_add) with root permissions.
1. having the root user and using it with su - root
2. having the normal user in the wheel group
3. having another user in wheel group, so the normal user isn't in the wheel gr. So if running commands as root you need to first "su - anotheruser" with the normal user then you can "sudo pkg_add"
Or are there any other possibilities?
UPDATE: so not "1." OK. But which one then? "2." or "3."?