Category Archives: Linux

How to Upgrade WordPress through SSH

First Take backup of all your files and database Then go to the exact directory where you have your wordpress installed and move the directories wp-admin and wp-includes root@server# mv wp-admin wp-admin-bk root@server# mv wp-includes wp-includes-bk Download the latest wordpress … Continue reading

Posted in Linux | Tagged , | Leave a comment

What is limitipconn ? and How to Install it ?

Limitipconn :- limitipconn is a tool which is used to limit the number of connections per IP on our server. This tool can help in lowering the load on your server if someone connecting too many times from the same … Continue reading

Posted in Linux, Web Hosting | Tagged | Leave a comment

How to Install and Configure maldet (Linux Malware Detect – LMD)

Linux Malware Detect (LMD) is a malware scanner for Linux released under the GNU GPLv2 license, that is designed around the threats faced in shared hosted environments. It uses threat data from network edge intrusion detection systems to extract malware … Continue reading

Posted in Linux, security | Tagged , , | Leave a comment

HOW TO: Installing RPM Packages

To install RPM Package use rpm -ivh packagename.rpm To uninstall RPM Package rpm -e packagename

Posted in Linux | Leave a comment

Missing Dependency: libjpeg.so.62 is needed by package xulrunner-1.9.2.22-1.el5_7.i386 (updates)

On a cpanel sever, when running yum update, i get following error xulrunner-1.9.2.22-1.el5_7.i386 from updates has depsolving problems –> Missing Dependency: libjpeg.so.62 is needed by package xulrunner-1.9.2.22-1.el5_7.i386 (updates) ghostscript-8.70-6.el5_7.3.i386 from updates has depsolving problems –> Missing Dependency: libjpeg.so.62 is needed … Continue reading

Posted in CentOS | Tagged , , | Leave a comment

Installing Git on CentOS

Git is a distributed version control created by Linus torvalds for managing Linux kernal. Now many large projects use git for version control. You can download latest version of git from http://git-scm.com/download To install version 1.7.5.2, run cd /usr/local/src wget … Continue reading

Posted in Linux | Tagged , , , | Leave a comment

Install Unrar on CentOS

To install Unrar on CentOS, run cd /usr/local/src wget http://www.rarlab.com/rar/rarlinux-3.8.0.tar.gz tar zxvf rarlinux-3.8.0.tar.gz cd rar make make install We installed older version of unrar as Latest unrar will not work on CentOS 5.x To check where unrar installed, run which … Continue reading

Posted in CentOS | Tagged , , | Leave a comment

Install Sun Java on CentOS

Download Java JDK or JRE from http://www.oracle.com/technetwork/java/javase/index-137561.html JRE is only for running Java Programs. JDK can compile Java Source code and run it. So if you plan to make Java Program, download JDK. Download Link for 32 Bit JDK on … Continue reading

Posted in CentOS | Tagged , , , , , | 1 Comment

Change ls color in bash CentOS/RHEL/Fedora

By default CentOS/RHEL show directorys in ls listing in dark green. With dark color, i found it difficult to read directory names. To change directory color, do cp /etc/DIR_COLORS ~/.dir_colors Edit ~/.dir_colors vi ~/.dir_colors Find DIR 01;34 # directory Replace … Continue reading

Posted in Linux | Tagged , , , , , , | 4 Comments

Install software with RPM

To install rpm file, run [code lang="bash"] rpm -ivh package.rpm [/code] Here -i = install -v = verify -h = show progress with # To upgrade an existing rpm package, run [code lang="bash"] rpm -Uvh package.rpm [/code] -U = Upgrade … Continue reading

Posted in Linux | Tagged , , | Leave a comment