September 2010

How To: 2 Methods To Change TimeZone in Linux

by Ramesh Natarajan on September 29, 2010

Question: When I installed the Linux OS, I forgot to set the proper timezone. How do I change the timezone on my Linux distribution. I use CentOS (Red Hat Linux). But, can you please explain me how to do this on all Linux distributions with some clear examples.

Answer: Use one of the following methods to change the timezone on your Linux system. One of these methods should work for you depending on the Linux distribution you are using.
(more…)

{ 8 comments }

6 Useful Linux One Liners

by Sasikala on September 28, 2010

Individual Linux commands can be combined in the command line, to accomplish tasks that otherwise would require shell scripts to be written.

This article provides 6 linux one liners that will help you accomplish few useful tasks.
(more…)

{ 6 comments }

7 Linux sudo Command Tips and Tricks

by SathiyaMoorthy on September 27, 2010

Using sudo command, an user can execute root only commands.

In this article, let us review how to setup sudo environment along with some sudo command examples, tips, and tricks.
(more…)

{ 10 comments }

Get Your Copy of Nagios Core 3 eBook

by Ramesh Natarajan on September 22, 2010

If you are a sysadmin, dba, network administrator, IT manager, or someone who is responsible for keeping the IT infrastructure up and running, you should implement a robust monitoring solution that will notify you when there is an issue. It should also notify the right people at the right time about a potential issue, even before it becomes critical.

Nagios Core 3 eBook is the only guide you’ll ever need to get your IT infrastructure monitored using Nagios Core, and I promise it will help you to understand everything you need to know to implement Nagios Core 3.
(more…)

{ 3 comments }

How To: 5 Steps to Install phpMyAdmin on Linux

by Ramesh Natarajan on September 16, 2010

Do you have a MySQL database in your environment? Did you know that the easy (and most effective) way to manage MySQL database is using phpMyAdmin?

phpMyAdmin is a web-based tool written in PHP to manage the MySQL database. Apart from viewing the tables (and other db objects), you can perform lot of DBA functions through the web based interface. You can also execute any SQL query from the UI.

This article will provide step-by-step instructions on how to install and configure phpMyAdmin on Linux distributions.
(more…)

{ 5 comments }

If you are a sysadmin, who is responsible for managing multiple servers, you should learn the fundamentals of virtualization and implement it in your environment.

On a very high-level, you should get started by installing VMWare ESXi server, which can be managed using vSphere Client.
(more…)

{ 2 comments }

7 Linux fdisk Command Examples to Manage Hard Disk Partition

by Balakrishnan Mariyappan on September 14, 2010

On Linux distributions, fdisk is the best tool to manage disk partitions. fdisk is a text based utility.

Using fdisk you can create a new partition, delete an existing partition, or change existing partition.

Using fidsk you are allowed to create a maximum of four primary partition, and any number of logical partitions, based on the size of the disk.

Keep in mind that any single partition requires a minimum size of 40MB.

(more…)

{ 13 comments }

6 Perl File Handle Examples to Open, Read, and Write File

by Balakrishnan Mariyappan on September 10, 2010

In this article, let us discuss how to manipulate the file handlers in Perl.

1. Typical Way of Opening a Perl File Handlers

The perl example below opens a file with a bareword. This is a typical perl file open scenario.
(more…)

{ 0 comments }