You are not logged in.
I came to Arch from Ubuntu. One of the featues of Ubuntu that I liked (a personal preference here - nothing more, nothing less) was the absence of a root account (disabled in Ubuntu by default) in combination with the 'sudo' command.
At the moment I've been using a defacto method by enclosing my commands in single quotes and pre-fixing them with 'su -c'.
I'm now getting tired of this and would like to implement a proper sudo environment. Can I do this in Arch, how easy is it to do and what are the commands I need to execute to achieve the joint aims (sudo + root account disabled)?
Any help you can give is greatly appreciated.
Offline
As with any piece of software - install it an configure it.
The 'proper' way is:
pacman -S sudo
su -c visudo (uses vi to edit the sudoers file)
sudo <blah>
Offline
Thanks phrakture. I didn't know 'sudo' was a package. I do now. Another one for the n00bs' Almanac! Cheers
Offline