Browsing tag

rhel 6

How To Disable IPv6 on CentOS 6 / RHEL 6

This post guides you on how to disable IPv6 on CentOS 6 / RHEL 6. Edit the /etc/sysctl.conf file. vi /etc/sysctl.conf Put the following entry to disable IPv6. net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 Execute the following command to reflect the changes. sysctl -p That’s All.

How To Install SpaceWalk on CentOS 6 / RHEL 6

Spacewalk is the package, and system management solution for Red Hat derived Linux operating system such as CentOS, Scientific Linux and Fedora, by the spacewalk community. It is released under GPLv2 license. It offers a more flexible way to do Inventory of the systems Install and Update system packages. Configuring for Kick-start installation. Deploy and […]

RHEL / CentOS KVM Bridged Networking

This tutorial help you to setup KVM bridged networking which allows guest operating system to communicate external network or vice versa. Before going to setup a bridged connection; stop networking service. Here we uses network connection “eth0” to get it bridged with “br0” virtual adapter. service network stop Create a virtual adapter named “br0” with […]

Install ownCloud on CentOS 6 / RHEL 6

ownCloud is a web suite that provides a cloud storage over the network, data can be uploaded via web browser or using software client. Data will be stored on the server and can be downloaded or access any time with browser. The project is based on PHP and a SQLite, MySQL, Oracle or PostgreSQL database, […]

Types of Raid Levels

RAID refers to redundant array of independent disks, it help you to combine multiple storage disks into single logical unit. Data is distributed across the disks, depend up on Raid level used. Multiple raid levels are available, we are focusing on 4 raid levels which are most widely used on IT industries. The following RAID […]