Install lshw in CentOS 6.X

While I am trying to use the command lshw in CentOS 6 , I just came to know that it is not installed and not available in main repo.To install lshw in your CentOS PC .1. Open Link :  http://pkgs.repoforge.org/lshw/?C=M;O=D2. Copy download link of latest rpm package3. Install with yum rather than using rpm , if you use rpm then it will fail due to missing dependencies. so better to use yum.# wget...

Process Management

Hello , My new blogpost is about Process Management and I have gone all concepts of Process Management. I have written this document with help of .Doc and it consists of images. So its hard to maintain the format in blogger too. I am placing the download link , Please use that link to download. I hope it helps you. To Download my post Please click h...

TCP Wrappers

The Simple thing I can tell us all about TCP Wrappes is " TCP Wrappers are Host-Based Networking Access Control List (ACL) System & used to filter Network access to Internet.For all services in Linux TCP wrappers cant be applicable by default and its possible if source of the service got compiled...

SSH configuration: sshd_config file

In SSH Server , we do have two types of configuration files. They are sshd_config and ssh_config.Here sshd_config is all about server side configuration. The behavior of SSH server written at this file.In this article I am writing a simple article with few best practices over sshd_config.Note: For edit that you are doing to sshd_config , you must restart sshd service. Please review my last article...

Install & configure SSH in CentOS 6.X

Today I am going to start writing an article about SSH installation and configuration in CentOS. SSH means Secure Shell. When ever we are doing any kind of remote transmission though telnet,It will transmit the information as clear text and anybody is in the network can see whats being transferred and username/password and other sensitive information which supposed to be very secure.So to protect...

FTP in CentOS 6.x with vsftpd,ftp.

In this tutorial I am going to explain about how to install and configure FTP server with Vsftpd and ftp. To install yum install vsftpd ftp Do setsebool -P ftp_home_dir=1 for SELinux. after installing edit the configuration file with vim /etc/vsftpd/vsftpd.conf For basic secured FTP these are the necessary actions you should follow. Disable Anonymous login If you want with placing anonymous_enable=NO or...

Managing repo's with YUM in CentOS,RedHat,Fedora

Today I am just writing article about how to Enable,Disable,Add repository by using YUM Adding Repo: yum-config-manager --add-repo repository_url Enable Repo: yum-config-manager --enable repository… Disable Repo: yum-config-manager --disable repository… hope that helps you...