3/13/14

Remove multiple RPM packages containing the same string

To remove all RPM packages containing a similar name, search for them in your rpm db and pass the result onto an rpm -ev command:

rpm -qa | grep 'drupal' | xargs rpm -ev

Note this does not take package dependencies into account

Quick HTTP to HTTPS - Apache2

There are several methods for redirecting your Apache-based website visitors who might type your servers URL using the plain (non-secure) HT...