↧
How To List Installed Packages in CentOS Linux
This command will list all packages installed in CentOS: # yum list installed To check for a specific package if it is installed in CentOS: # yum list installed | grep <package name> Example,...
View ArticleHow To Check Available Packages that can be installed in CentOS
This command will list available Python packages that can be installed:# yum list available | grep pythonNo Comments
View ArticleHow To Install CPANM in CentOS Linux
The easiest way to install Perl CPAN packages without the hassles of answering "yes" or "no" questions is to use the cpanm script developed by Tatsuhiko Miyagawa. Installing Perl CPANM programRun the...
View Article