Category Archives: Operating Systems

Linux : There is no screen to be resumed matching …

Using “screen” on Linux to perform your important work? Way to go, SysAdmin 🙂 Then you might at some point encountered the following behavior – while attempting to resume a session using “screen -r”, the following message occurred : There is a screen on: 1610.pts-0.host (25/08/18 08:25:36 PM) (Attached) There is no screen to be… Read More »

Linux : How to get hardware serial number

The easiest way to get hardware serial and related information is using “dmidecode“. The command below should give you exactly what you need : dmidecode -s system-serial-number The command above does not usually work with “clone” computers/servers. Alternatively, you may use the command below, which will output all parts serial number availables : dmidecode |… Read More »

Windows : How to retrieve Fiber Channel interface WWNs

Here is a simple PowerShell command that will output the FC host adapter interface WWNs. Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace “root\WMI” | ForEach-Object {(($_.NodeWWN) | ForEach-Object {“{0:x}” -f $_}) -join “:”} If your interface have two ports, both will be output in order. This command have been successfully tested with QLogic adapters on Windows 2012 and… Read More »

Linux : R1Soft The following signatures couldn’t be verified because the public key is not available

Getting this error from the R1Soft repo lately trying to run a “apt-get update” on Debian Linux? Ign http://repo.r1soft.com stable Release W: GPG error: http://repo.r1soft.com stable Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 39A4965166BD1D82 Simply do the following to import the new key and get rid of… Read More »

Windows : File Explorer don’t refresh

I had this strange issue on Windows 8/10 where changes such as file/folder renaming or deletion not appearing after a modification. A manual “Refresh” from the contextual menu (right click + Refresh) was required to show the last modification. It seem that some Windows core components were corrupted and needed to be repaired/restored. First of… Read More »

Linux : Package package-name.rpm is not signed

Having the following error trying to install a unsigned package from Yum repository on CentOS/RHEL? Unless you get an officially signed package(s), you will need to override/accept the installation of unsigned package (if you trust the source/issuer, of course). If installing a locally located rpm file(s), you may use the command “rpm -ivh package-name.rpm“. If… Read More »