Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

theshell

theshell

Moving files a level up

Move to the folder you want the files to eventually reside in, the example works on the premise that the target directory is above the source directory. |_examplefolder |_myfolder Issue the following at shell mv myfolder/* . This command would…

How to unrar file – CentOS 6.5

Install the rpmforge repo wget rpm -i rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm yum install unrar -y Once you have the package installed, type in the following command to extract the rar unrar x <filename>.rar   The x tell’s unrar to maintain the original folder…

Update Plesk to 11.5

  The data center we use hasn’t updated it’s OS images to include the latest version of Plesk, 11.5. This is how we went about upgrading the panel. First off, make sure you backup everything. We work off of the…

Install Imagemagick – CentOS 6.5

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear gcc php-devel php-pear Issue the following to verify whether you have Imagemagick available via the current repositories yum list ImageMagick*…

Upgrade PHP to 5.4 – CentOS 6.5

I recently had to upgrade PHP on an old server, here is how I did it. Please note: This will remove all your PHP components and any custom settings you may have done, you’ll have to repeat all that you…

Install PDF2SWF (SWFTools) on Centos 6.5

Start of by making sure you have the rpmforge repo installed Install DAG’s GPG key rpm –import 32-bit wget 64-bit wget Install the repo rpm -i rpmforge-release-0.5.3-1.el6.rf.*.rpm Install swftools yum install swftools -y