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.

Saturday 3 March 2012

Swap Device in HP_Unix

This post mainly deals with the management of swap space in hp unix.

Swap refers to the Virtual space or Paging space as referred according to the UNIX flavour.

Importance of Swap Space has the ability to provide much memory space than the machine has.

The default swap space in hp unix  "/dev/vg#/lvol2".

Logical volume of partition "2" is assigned as default swap space. This space cannot be extended or reduced.

# lvcreate -n <Logical_Volume_Name> -L <Size_of_LV> <Volume_Group_Name> : Command to create a logical volume of desired size.

Swap Space should be twice the size of Physical Memory.

# swapon <Logical_Volume_Name> : Command to assign the the created the logical volume as a swap device.

# swapinfo -dtm : Command to verify the created swap device is created an activated.

Ensure the entry has been  made at "/etc/fstab" for the swap space to persist across the reboot.

/etc/fstab

<Logical_Volume_Name>   "/"   swap   defaults 0 0