About Us

RSInfoMinds, a web based IT Training and Consultancy firm. It is established with high dreams in training people in IT Infrastructure Field. We provide Online and Class Room training in various fields of IT Infrastructure Management.

Join Us: http://www.facebook.com/RSInfoMinds
Mail Us: rsinfominds@gmail.com
Twitter: @RSInfoMinds

We are specialized in the below courses:

Redhat Linux Admin Redhat Linux Cluster
Redhat Virutualization IBM AIX Admin
IBM AIX Virtualization IBM AIX Cluster
HP Unix Admin HP Unix Cluster
HP Unix Virtualization Shell Scripting
Veritas Volume Manager Veritas Cluster
Oracle Core DBA VMWare


We provide training in such a way, So that you get in depth knowledge on the Courses you look for.

And we ensure you are very confident from each and every Techincal aspect that the IT Industry needs and expects from you.

We also conduct Workshops on the latest technology and the real time faculties sharing their work experiences to make you the best.

Sunday 4 March 2012

Configuration of Dump Device in Hp Unix

This blog states how to configure Dump device and activate a dump device in HP Unix.

Dump Device refer to an object which plays a vital role during the system crash. On the occurence of a system crash the machine reboots, an image of the system (including hardware and software) will be taken as a dump image and stored in a file system. This information can be used for debugging purpose to analyze the reason for crash.

Steps for configuration:

In HP Unix, by default the paging space is also used as a dump device. "lvol2".

1) The dump device should be a size larger than the size of the RAM.

# dmesg | grep -i physical : Command to get the RAM Size.

2) Create a logical volume of continous allocation and bad block allocation disabled.

# lvcreate -n dump -L 1024 -C y -r n  <Volum_Group_Name> : Command to create a logical volume.

3) Assign the created logical volume as a dump device.

# lvlnboot -d /dev/vg_name/lv_name

4) Verify the dump has been assigned.

# lvlnboot -v

Reboot the machine for the dump to get effective.