Linux

Tips for Linux Users

Linux Pronunciation

Linus Torvalds explains how the word should be pronounced.

Extending Logical Volume

I was only using a part of my external usb hard drive to keep backups and needed to extend the partition to accomodate the ever-growing backup files.

There are quite some ways to do this which can be referenced at FedoraNews.org and TLDP.org .

Below is a quick command line reference if you are familiar with the process already.

  1. I added an additional 10GB of space:
    # lvextend -L+10G /dev/vg00/lvol0
    
  2. Unmount the drive:
    # umount /mnt/usbdisk
    
  3. Check the logical volume:
    # e2fsck -f /dev/vg00/lvol0
    
  4. Increase the file system size to match.
    # resize2fs -pf /dev/vg00/lvol0
    
  5. Remount:
    # mount /mnt/usbdisk
    

ZABBIX monitoring System installation with screenshots

ZABBIX is a 24×7 monitoring solution without high cost.

ZABBIX is software that monitors numerous parameters of a network and the health and integrity of servers. ZABBIX uses a flexible notification mechanism that allows users to configure e-mail based alerts for virtually any event. This allows a fast reaction to server problems. ZABBIX offers excellent reporting and data visualisation features based on the stored data. This makes ZABBIX ideal for capacity planning.

Read Full article here

Free Software Movement and the GNU/Linux Operating System -- Richard Stallman

This is a rather long (approx 1 hour) but very informative video lecture by Richard Stallman at the Australian National University in Canberra, October 2004 -- on the free software movement and the GNU/Linux Operating System.

Topics covered include free software development, privacy, copyright, the history of GNU, Linux, and the GNU/Linux operating system.



Reading ext2/ext3 file system from Windows...

Recently, I've been involved in developing the website for ext2read. It is a windows explorer like application from where you can read ext2/ext3 partitions. Simply download the exe and run it. It will automatically scan your file system for any ext2/ext3 partitions and list it.

Easy SNMP Server and Client Configuration Steps

Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.

Read Full article here

Secure Debian System Using FireHOL Firewall

FireHOL is a stateful iptables packet filtering firewall configurator. It is abstracted, extensible, easy and powerful. It can handle any kind of firewall, but most importantly, it gives you the means to configure it, the same way you think of it.

Read Full article here

Nagios and Oreon (Nagios web front end) installation and Configuration

Nagios is a host and service monitor designed to inform you of network problems before your clients, end-users or managers do. It has been designed to run under the Linux operating system, but works fine under most *NIX variants as well. The monitoring daemon runs intermittent checks on hosts and services you specify using external "plugins" which return status information to Nagios. When problems are encountered, the daemon can send notifications out to administrative contacts in a variety of different ways (email, instant message, SMS, etc.).

Lighttpd Webserver Installation and Configuration

Security, speed, compliance, and flexibility--all of these describe LightTPD which is rapidly redefining efficiency of a webserver; as it is designed and optimized for high performance environments. With a small memory footprint compared to other web-servers, effective management of the cpu-load, and advanced feature set (FastCGI, CGI, Auth, Output-Compression,URL-Rewriting and many more) LightTPD is the perfect solution for every server that is suffering load problems. And best of all it's Open Source licensed under the revised BSD license.

Debian Based Linux Distributions and Live CD's list

Most of the people want to know the list of debian based linux distributions and live cd's.This is very interesting list i haven't seen any place on the net
Read Full article here.

Comment