How to configure FTP server in CentOS 6.3 – vsftpd server
| |

How to configure FTP server in CentOS 6.3 – vsftpd server

How to configure FTP server in CentOS 6.3 – vsftpd server vsftpd, which stands for “Very Secure FTP Daemon”,vsftp is an FTP server for Unix-like systems, including Linux. It is licensed under the GNU General Public License. It supports IPv6 and SSL. vsftpd supports explicit (since 2.0.0) and implicit (since 2.1.0) FTPS. vsftpd is the…

How to encode and decode the strings with base64
|

How to encode and decode the strings with base64

In this post we will learn how to encode and decode the strings with base64. We will also see some example on this as well. Introduction Base64 is a group of similar encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The Base64 term originates from…

How To Add duckduckgo Search engine in WordPress Blog or website

How To Add duckduckgo Search engine in WordPress Blog or website

How To Add duckduckgo Search engine in WordPress Blog or website Adding the duckduckgo search engine is very simple process. (1) Visit this link https://duckduckgo.com/search_box (2) Fill up the fields as per your requirement. (3) Copy the code and just paste it into text widget of wordpress . After this place the text widget in…

This XML file does not appear to have any style information associated with it, RSS Feed problem(wordpress)

This XML file does not appear to have any style information associated with it, RSS Feed problem(wordpress)

Mostly I use firefox and few days back I was working on RSS feed burner of my this Blog. I tested this blog in Google Chrome and surprised to see an Errr: “This XML file does not appear to have any style information associated with it” I checked my XML file and it looks fine….

rsync all files,hidden files,symlinks,hardlinks to remotes Linux Server
|

rsync all files,hidden files,symlinks,hardlinks to remotes Linux Server

rsync all files,hidden files,symlinks,hardlinks to remotes Linux Server I have used these flags -ravpzHogt along with rsync command many times in server migration. And I always get good results. Key features** (1) Date Time stamp of files and folder remain same as you find in source server. (2) Hidden files or directory recursively transfer to…

What is /dev/shm and how to mount /dev/shm

What is /dev/shm and how to mount /dev/shm

Introduction: This post will explain about the /dev/shm and you will also know how to mount /dev/shm in linux system. /dev/shm is nothing but implementation of traditional shared memory concept. It is an efficient means of passing data between programs. One program will create a memory portion, which other processes (if permitted) can access. This…

Installing Nagios-3.4 in CentOS 6.3
|

Installing Nagios-3.4 in CentOS 6.3

Installing Nagios-3.4 in CentOS 6.3 This is how to install nagios 3.4 tutorial for installing nagios-3.4 in CentOS 6.3 in a few steps. rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm yum install nagios nagios-devel nagios-plugins* gd gd-devel httpd php gcc glibc glibc-common Bydefualt on doing yum install nagios, in cgi.cfg file, authorized user name nagiosadmin is mentioned and for…

How to find which filesystem is supported by running kernel

How to find which filesystem is supported by running kernel

How to find which filesystem is supported by running kernel /proc/filesystems is the file which is used to detect the filesystems supported by running kernel. The nodev represent the file system is not assoicated with any disk partition for eg. /dev/sda1 In below given output, you can find out the ext3,ext4 and fuseblk can be…

subtract integer written in columns from 2 different files

subtract integer written in columns from 2 different files

subtract integer written in columns from 2 different files This is an eg. of subtracting the integer value in column of file1 and file2. root@tuxworld:/mnt# for i in `seq 1 5`;do echo $i >> file1;done root@tuxworld:/mnt# for i in `seq 0 4`;do echo $i >> file2;done root@tuxworld:/mnt# cat file1 1 2 3 4 5 root@tuxworld:/mnt#…