Posted By: admin

admin

This user hasn't shared any profile information

by admin 7 years ago

How to extend the LVM Partition / Resizing lvm partion

If required space is not available in the VG then request Vmware or SAN team for a new disk. To Extend the lvm partion, we need to have free space in volume group. This can be verified from the vgs command. # vgs VG #PV #LV #SN Attr...

by admin 7 years ago

Find command with some examples

Find command is available by default in most of the Linux distros so you don’t need to install any packages to get this command. Find command is very useful to search it for a particular file based on various search criteria like...

by admin 7 years ago

How to encrypt and decrypt the file in Linux

Sometimes you may need to send a important files as a attachment thru emails. Better if the files was sent in encryption mode then unauthorized person can’t misuse the file. Now we will see here how to encrypt and decrypt the file...

by admin 7 years ago

How to find top CPU utilization processes

At frequent intervals, cpu will be utilized high however sometimes you can’t find which process is consuming. Below commands will help you to find top consuming cpu processes. [root@rhel6-1 ~]# ps -eo pcpu,args --sort=-%cpu | head...

by admin 7 years ago

How to download the rpm’s from Redhat portal

To download the all rpm’s of particular release from Red Hat portal then server should be running with that release and registed with Red Hat portal. To Download the RPM’s for Red Hat 5 : # reposync --gpgcheck -l --repoid=rhel-x86_64-server-5...

by admin 7 years ago

How to create swap partition / space

Swap space in Linux is utilized when the usage of physical memory (RAM) is full. When the physical memory is full and if the resources needs more memory then the inactive pages in memory are moved to the swap space. Swap space is not a...

by admin 7 years ago

Linux History command with examples

To view the list of commands executed by the user. # history To view the total history size in the server # echo $HISTSIZE 1000 To modify the total history size in the server. for eg I’m going to set the history size to 1500 #...