Uncategorized

now browsing by category

 

Install Memcached (Caching Server) on RHEL/CentOS 6/5 Linux Systems

undefined

This article shows how to install Memcached Server on RHEL 6.3/6.2/6.1/6/5.8/5.6, CentOS 6.3/6.2/6.1/6/5.8/5.6 and Fedora 17,16,15,14,13,12 using package manager called YUM. By default, Memcached program not available under Linux, you need to enable and install third party repository called EPEL to install Memcached program on Linux. The EPEL repository isRead More

How to Install and Configure SVN Server on Debian Linux Systems

undefined

Subversion is an product of Apache Software Foundation. It is open-source revision control system, which is designed to be a replacement for CVS. This article will help you install and configure SVN Server on Ubuntu & LinuxMint operating system. 1. Install Required Packages First install required packages for Subversion serverRead More

Howto set and fix postfix timezone to your local timezone

undefined

Here’s the issue I trying to fix, simply Postfix records in maillog have time stamps from different time zones. Symptoms If you look at /usr/local/psa/var/log/maillog, you may find your postfix/smtpd time stamp is switched by several hours: Feb 15 05:24:33 server postfix/smtpd[11984] Feb 15 14:24:44 server postfix/smtpd[12001] Feb 15 05:24:44Read More

How to Install Git 2.8.1 on CentOS Linux Systems

undefined

Git has released 2.8.1 version on Apr 03, 2016. Git is a free and open source distributed version control system . It is designed to handle a small to very large projects with speed and efficiency. To read more details and changes about Git 2.8.1 read Git release notes. IfRead More

How to Install Git 2.8.1 on Debian Linux Systems

undefined

Git has released 2.8.1 version on Apr 03, 2016. Git is a free and open source distributed version control system . Git 2.8 comes with the large number of updates verses previous release 2.7. It is designed to handle a small to very large projects with speed and efficiency. ToRead More

How to Reduce the Size of an ext2, ext3 or ext4 Filesystem on Linux Systems

undefined

Objective To reduce the size of an ext2, ext3 or ext4 filesystem Background Reducing the capacity of a filesystem on a resizeable block device (such as a partition or logical volume) is a two-step process: Reduce the size of the filesystem by the required amount. Reduce the size of theRead More

How to Increase the Size of an ext2, ext3 or ext4 Filesystem on Linux Systems

undefined

Objective To increase the size of an ext2, ext3 or ext4 filesystem so as to completely fill a block device Background Increasing the usable capacity of a filesystem on a resizeable block device (such as a partition or logical volume) is a two-step process: Increase the size of the blockRead More

How to Setup NTP Server on CentOS 7/6/5 Linux Systems

undefined

We have running approximate 50 systems on our LAN. In which most of the systems are running with Linux operating system’s and few of them are running with Windows and MAC.In this setup we will configure one of Linux system as NTP sever which will be synchronized from public NTPRead More

How to Change Last Commit Message in Git

undefined

We can update last commit log using –amend option in git commit. Use the following command to do it but remember that if some other has already sync your changes then they again need to sync your code to avoid any future problems related to this. $ git commit –amendRead More

Git – Create Remote Repository

undefined

In this chapter of Git Tutorial, You will learn how to create remote git repository on remote server which will be used as centralized repository by developers. All the developers needed to make a clone of this repository on their local system to start work. They can also add thisRead More