Archive for category Unix Admin

User Quota Control

[requirement]
1.kernel must be compiled with quota support ( Modern linux are usually OK)
2.quota rpm package installed
Read the rest of this entry »

No Comments

rpm command example

Query info about package:

rpm -qil package(binary)name

if you want info about all installed packeges

rpm -qail

INSTALL package:

rpm -ivh package_name

Forcing Installation (ignoring dependency problem)

rpm -ivh --force --nodeps package_name

verify package

rpm -V -a   #verfiy all package
rpm -V package_name

No Comments