linux-pages.com
... arcane linux knowledge collected over the eons, bit by bit ...
Assuming we all know how to check the drupal version if your site is online and you know the admin password… (Administer > Logs > Status Report)
But what do you do when you only got a zipped backup of your drupal site or the site is offline or you don’t have the admin password […]
Here’s how to list all packages whose names start with ‘nss’
yum info -v nss* | grep -v Committer | grep -w ‘Name\|Version\|Release\|Description\|Repo’
Here’s how to list all INSTALLED packages whose names start with ‘nss’
yum info -v nss* | grep -A12 -B5 -w ‘installed’ | grep -v Committer | grep -w ‘Name\|Version\|Release\|Description\|Repo\|installed’
And since […]