Category Archives: Operating Systems

Linux : CloudLinux Yum could not load PEM client certificate

The following error may occur when runnong “yum update” on a new installation of CloudLinux from official ISO : CloudLinux-8 – Gradual Rollout Slot 1 0.0 B/s | 0 B 00:00 Errors during downloading metadata for repository ‘cloudlinux-rollout-1’: – Curl error (58): Problem with the local SSL certificate for https://rollout.cloudlinux.com/slot-1/8/x86_64/repodata/repomd.xml [could not load PEM client… Read More »

Windows : How to list and export installed software with PowerShell CLI

Use the following PowerShell command (run as admin) to list and export all installed software on Windows and export to a text file : Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\InstalledSoftware.txt This will save the output to C:\InstalledSoftware.txt

Linux : InRelease’ changed its ‘Version’ value from ‘10.1’ to ‘10.2’

You probably noticed a similar output after running “apt-get update” on your Debian Linux based system: N: Repository ‘http://deb.debian.org/debian buster InRelease ‘ changed its ‘Version’ value from ‘10.9’ to ‘10.11’ E: Repository ‘http://deb.debian.org/debian buster InRelease ‘ changed its ‘Suite’ value from ‘stable’ to ‘oldstable’ […] This means that the major and minor version you are… Read More »