How to Install ownCloud on CentOS

Hi all, Storing our data with a third-party server or storage place has been always a concern. We used to save our personal as well as company or organization-related data with storage space providers like Dropbox, Google Drive, Outlook drive, etc. They provide security for our data but sometimes we need to go for their […]

Read More

VNC server

VNC (Virtual Network Computing) is a graphical desktop sharing system that can be used to control a remote computer. VNC transmits mouse and keyboard events from one node to another on a network and updates the graphical screen on the other end of the network. Vnc is platform independent. VNC makes use of RFB (Remote […]

Read More

Upgrading OpenSSH

You may follow the below steps to upgrade the OpenSSH on a Centos 5 server. Download the OpenSSH source tarball from the vendor and unpack it. You can find the tarballs athttp://www.openssh.com/portable.html cd /usr/local/src wget http://mirror.esc7.net/pub/OpenBSD/OpenSSH/portable/openssh-6.0p1.tar.gz tar -xvzf openssh-6.0p1.tar.gz Copy the spec file and tarball: cp ./openssh-6.0p1.tar.gz/contrib/redhat/openssh.spec /usr/src/redhat/SPECS/ cp openssh-6.0p1.tar.gz /usr/src/redhat/SOURCES/ Do a little magic: […]

Read More

Rkhunter

Rkhunter (Rootkit Hunter) is a Unix-based tool that scans for rootkits, backdoors and possible local exploits. It does this by comparing MD5 hashes of important files with known good ones in online database, searching for default directories (of rootkits), wrong permissions, hidden files, suspicious strings in kernel modules, and special tests for Linux and FreeBSD. […]

Read More

PPTP

PPTP – Point-to-Point Tunneling Protocol – extends the Point to Point Protocol (PPP) standard for traditional dial-up networking. Which enables the secure transfer of data from a remote client to a private enterprise server by creating a virtual private network (VPN) across TCP/IP-based data networks. PPTP supports on-demand, multi-protocol, virtual private networking over public networks, […]

Read More

OpenVZ Installation

Follow the below steps to install OpenVZ in your server. 1. Add the openvz repo. cd /etc/yum.repos.d wget http://download.openvz.org/openvz.repo yum -y install ovzkernel 2. Adjust the sysctl.conf vi /etc/sysctl.conf # Controls IP packet forwarding net.ipv4.ip_forward = 1 # Controls source route verification net.ipv4.conf.default.rp_filter = 1 # Controls the System Request debugging functionality of the kernel […]

Read More

OpenERP

OpenERP Installation in Ubuntu 12.04LTS Update the packages in the serve before starting the the installation. To update the VPS : sudo apt-get update sudo apt-get dist-upgrade Add an openerp user to own and run the application. sudo adduser –system –home=/opt/openerp –group openerp Note that a “home” of /opt/openerp has been specified, this is where the […]

Read More

Nginx

Nginx (pronounced engine-x) is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server.Nginx now hosts nearly 12.18% (22.2M) of active sites across all domains. Nginx is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption. Unlike traditional servers, Nginx doesn’t rely on […]

Read More

Ffmpeg,mplayer,mencoder,ffmpeg-php

This article describe how to install ffmpeg, mplayer, mencoder, flvtool2, ffmpeg-php with all supported codecs to convert / manipulate videos easily on CentOS 5.x. If you want to run sites like youtube, this article will help you to install the base for your software. 1. Setting-up RPMForge respository. RPMForge repository (http://dag.wieers.com) is the biggest rpm […]

Read More

Memcached and php-memcache

Memcached is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. 1. Setting-up RPMForge respository. RPMForge repository (http://dag.wieers.com) is the biggest rpm respository for RHEL, CentOS for all versions. Setup the RPMForge repository as mentionedhere. 2. Install memcached. Use yum […]

Read More