yum install resize
yum install resize not working? You need to use this instead: yum install xterm
yum install resize not working? You need to use this instead: yum install xterm
This article will explain what to do with nginx ssl pfx. First get the pfx file to your server. In this example we will be using a directory called “ssl” off of the nginx root (where nginx.conf is located). From…
Recently, I noticed that the robocopy and Jenkins were not playing nice. My jobs kept failing even though robocopy was succeeding. Eventually I figured out that Jenkins was expecting an error code of 0 to be returned and robocopy was returning…
How do I change my system timezone from the command line without using redhat-config-date? centos redhat change timezone In order to change the timezone of your system you will need to access the file /etc/sysconfig/clock directly: #ZONE=”America/New_York” ZONE=”GMT” UTC=false ARC=false Note: If your…
Install PHP APC with Nginx on Centos 6.2 Install latest apc: # pecl install apc-3.1.10 Move your old apc.ini to a safe location: # mv .old Create a new (content below): ; Enable apc extension module extension =…
Goal: Disable and Enabled WordPress Plugins via the Command Line Today i’m going to show you how to disable and enable wordpress plugins via the command line Installation Download these two files to the root of your wordpress installation (same…
If you are not serving drupal out of a subdirectory use this config example: location / { # This is cool because no php is touched for static content try_files $uri @rewrite; } location @rewrite { Some modules enforce no…
If you cannot eject the disk from your iMac, Macbook, or any other type of Mac try this fix: Start Terminal, paste this in, and hit enter: drutil tray eject You may have to run the command a few…
To enabled updating on Adobe Acrobat X you need to modify this registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Adobe Acrobat\10.0\FeatureLockDown Change “bUpdater” = 1
To reset the mysql root password follow these steps 1. Stop running mysql instances # service mysqld stop 1a. If that doesn’t work then kill all running mysql instances # pkill mysql 1. Stop running mysql instances # service mysqld…