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 28 December 2013

RPM Commands


# rpm -ivh  MySQL-client-3.23.57-1.i386.rpm : Command to instatll the software.

# rpm -qa : Command to Query all the softwares installed.
cdrecord-2.01-10.7.el5
bluez-libs-3.7-1.1
setarch-2.0-1.1

# rpm -qa | grep 'cdrecord'

# rpm -q MySQL-client
MySQL-client-3.23.57-1

# rpm -q MySQL
package MySQL is not installed

# rpm -qa --queryformat '%{name-%{version}-%{release} %{size}\n'
cdrecord-2.01-10.7 12324
bluez-libs-3.7-1.1 5634
setarch-2.0-1.1 235563

# rpm -qf /usr/bin/mysqlaccess
MySQL-client-3.23.57-1


# rpm -qdf /usr/bin/mysqlaccess : Documentation

# rpm -qi MySQL-client : Lot of information about an installed pacakge.

# rpm -qip MySQL-client-3.23.57-1.i386.rpm : Information about the package before installation.

# rpm -qlp ovpc-2.1.10.rpm : List all the Files in a Package using rpm -qlp.

# rpm -qsp MySQL-client-3.23.57-1.i386.rpm : State of the files in a package. installed, replaced or normal

# rpm -qRp MySQL-client-3.23.57-1.i386.rpm : List the Dependency Packages using rpm -qRP
/bin/sh
/usr/bin/perl 

Lock/Unlock An Account In HPUX

[root] passwd -s test : Retrive the password attributes for an account.
test PS    10/17/13    0  91

[root]passwd -l test : Lock the account.
test LK    12/26/13    0  91

[root]passwd -d test : Unlock the account.
test NP    12/26/13    0  91

PS : Password Set.
LK : Account Locked.
NP : No Password.