Finding old debian etch iso

Finding ’s was little crucial when things doesn’t work well during upgrades. Especially when the drives go wrong and you have to continue running the good old distribution, better keep a copy of the ’s.

Here I found those ISO’s to get going.

http://ftp.ch.debian.org/debian-cd/4.0_r7/i386/iso-cd/

http://iso.linuxquestions.org/debian/debian-gnulinux-4.0r1-etch/

Tags: , ,


Updating DELL Server firmware on Redhat based Linux Servers

It has become quite simple to upgrade the Servers firmwares if you’re running Linux on them.

Find the repos from Linux portal of Dell.
# set up repos
wget -q -O – http://linux.dell.com/repo/community/bootstrap.cgi | bash
wget -q -O – http://linux.dell.com/repo/firmware/bootstrap.cgi | bash

Install the firmware tools

yum -y install firmware-addon-dell

And here you go. Update BIOS updates/firmwares easily.

# install BIOS update
yum -y install $(bootstrap_firmware)
update_firmware

Tags: , , , ,


Workshop on the standardization of Kannada Computing Terminology

A two day workshop on the of Computing Terminologies has been organized on January 28-29, 2012 at: Center for Internet and Society, with the help of CIS and (.net), under the (Frequently Used Entries for Localization) project. The workshop aims at the community review and standardization of frequently encountered computing terminologies in Kannada. Also, this workshop is first of its kind wherein discussion amongst Kannada linguists, translators, journalists, writers and users would take place and a consensus would reach upon the final translation of computing terminologies in Kannada. Kannada Evaluation meet mainly aims at solving the problem of inconsistency and lack of standardization in software translations.

FUEL tries to provide a standardized and consistent computer interface for users. FUEL Kannada Evaluation meet will be a concrete move towards the aforementioned problem and after the meet, FUEL will come with the standard translation of entries in Kannada language for the first time that are frequently being used by a normal user. This is a community project initiated by Red Hat. We invite linguists, translators, and users to participate who are serious to the cause of localization of computer in Kannada language.

Website: https://fedorahosted.org/fuel/ and http://www.fuelproject.org

Venue: Center for Internet and Society
194, 2nd C Cross, Domlur II Stage,
Domlur, Bengaluru,
+91 80 4092 6283 ‎ · cis-india.org

Start Time: 9.30 AM

Contact: Shankar Prasad +91-9967064285; Omshivaprakash +91-9902026518

Tags: , , ,


Nagios plugin to check DELL OpenManage (OMSA)

Those who doesn’t like configuring a long list of alert mechanism of on servers, here comes a savior – check_openmanage Nagios plugin. Making life easier.

More info on this plugin:
check_ checks the hardware health of Dell servers running Server Administrator (OMSA). The plugin can be used remotely with SNMP or locally with NRPE, check_by_ssh or similar, whichever suits your needs and particular taste. The plugin checks the health of the storage subsystem, power supplies, memory modules, temperature probes etc., and gives an alert if any of the components are faulty or operate outside normal parameters.

Here are some of its results:

dell-server01 ~$
OK – System: ‘PowerEdge R710′, SN: ‘XXXXXXX’, 72 GB ram (18 dimms), 1 logical drives, 2 physical drives

nagios-server ~$ check_openmanage -H dell-server02
Physical Disk 1:3 [Seagate ST3300007LC, 300GB] on ctrl 0 needs attention: Failure Predicted

It’s neat output and nagios ability to keep us alerted about server issues via email, sound alert through nagios plugins etc makes it feel good to keep a healthier RAID array running on servers.

Tags: , , ,


Adaptec RAID Monitoring via Nagios

Monitoring servers with RAID controllers is made easy through and other monitoring systems. Today its quite easy to get an app installed on your mobile and configure it to display critical errors from to quickly act on. When you’re an in-charge of Infrastructure, monitoring RAID becomes very very critical.  While digging around simple ways to monitor cards, a tiny little piece of script found on exchange -
check-aacraid.py by Anchor Systems.

This script works with the Storage Manager – arcconf installed to manage RAID Cards.

Here is an excerpt from Nagios Exchange on check-aacraid script configuration for your quick reference :-

Check the health of an Adaptec raid controller using /usr/StorMan/arcconf Checks the following: Logical device status, Controller status, Failed & Degraded drives. If the battery is present: Charging status, Est of charge time left, Charge left %. And removes the log file “UcliEvt.log” that is dropped into the CWD when /usr/StorMan/arcconf is run.
Check the health of an Adaptec raid controller using /usr/StorMan/arcconf

Checks the following:
Logical device status
Controller status
Failed & Degraded drives

If battery present:
Charging status
Est of charge time left
Charge left %

And removes the log file “UcliEvt.log” that is dropped into the CWD when /usr/StorMan/arcconf is run.

Add this to your “/etc/sudoers” file using visudo
"nagios ALL=(root) NOPASSWD: /usr/StorMan/arcconf GETCONFIG 1 *"

## On RHEL & possibly others ##
Disable “Defaults requiretty” in /etc/sudoers otherwise the command will not run via NRPE.

Add this to your checkcommands.cfg

define command {
command_name check_aacraid
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c check_aacraid
}

Add this to your servicedefs.cfg

define service {
use low-service-level
name aacraid-service
service_description aacraid
check_command check_aacraid
register 0
notification_interval 3600
}

Add the service

define service {
use aacraid-service
host_name host-with-crap-adaptec-crud
contact_groups upset-admin
}

And on the host you will be checking add this to nrpe.cfg
command[check_aacraid]=/usr/local/sbin/check-aacraid.py

Tags: , , ,