How to install sudo in RHEL-Red Hat/Fedora Linux?
Sudo (superuser do) allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root while logging all commands and arguments. Sudo operates on a per-command basis. It is not a replacement for the shell. Features include: the ability to restrict what commands a user [...]
How to install sudo in Ubuntu/Linux?
Sudo is a program designed to allow a sysadmin to give limited root privileges to users and log root activity. The basic philosophy is to give as few privileges as possible but still allow people to get their work done. This version is built with minimal shared library dependencies, use the sudo-ldap package instead if [...]
How to install Apache in Mac and Linux?
Installing Apache from sources involves the following steps Download Apache. Make sure that you download the source (stable version) The downloaded file will be something like this httpd-x.x.x.tar.gz (where x.x.x is the Apache version) Now execute the following commands ./configure –prefix=/usr/local/apache2 make sudo make install If everything is installed fine, run the following command, And [...]