Month: April 2019

Ubuntu 19.04: How to Install Adobe Acrobat Reader

Back  in the days when Adobe Acrobat Reader for Linux was supported and available on…

Configuring Virtual Storage Area Networks (VSANs)

NX-OS Overview Source: Storage Area Network (SAN) has been around for ages. During the early…

PowerShell: Get-NetTCPConnection for Windows 7 & 2008

On Windows 8 & 2012, there's this nifty function named Get-NetTCPConnection that is useful to…

PowerShell: Error While Invoking Functions Containing 2 Parameters

Issue: This function will raise an error when being invoked: function localFunc ($x, $y){ begin{}…

Ubuntu: Adding and Remove Repositories (Repos)

The following is a blunder I've made while attempting to install Acrobat Reader on Ubuntu…

Python: Module vs Package vs Library vs Framework

Module is a file which contains various Python functions and global variables. It is simply…

Python: Package Installer for Python (PIP)

This comes preinstalled with Python 3.4 or higher. Similar to the Microsoft PowerShell Gallery, Python.org…

Windows 2016: NIC Teaming

Assumptions OS: Microsoft Windows Server 2016 Network Switch: Cisco Nexus 9000 NX-OS with dual supervisors,…

Windows 2016: HP Proliant Server iLO 5

Integrated Lights Out (iLO) Remote Server Management Tools is easy to use. Following is an…

Logical Volume Manager (LVM) in Red Hat

Overview Most modern Linux versions are compatible with LVM, an open source equivalent to Storage…

How To Reset Administrator Password – HP iLO Versions 2-4

Prelude: this instruction only works on HP iLO versions 2 to 4; hence, the title…

MS SQL: Using Profiler to Trace Failed Logins

Story: There has been an issue with a service account triggering login errors at the…

Yet Another Quick List of Linux Commands

Here's a quick list of useful Linux lines that Admins should be committing to muscle…

PowerShell: Script to Search Scheduled Tasks for a Service Account

#$jumpBox=$env:COMPUTERNAME$servers="WEB01"$runas="Network Service"# Admin$who = whoami if ($who.substring($who.length-5, 5) -eq "-admin"){$username=$who;} else {$username=$who+"-admin";}#$password = Read-Host -Prompt…

Python: RegEx Module

It's been opinionated that a string operation is made complete only with RegEx. Hence, Python…

Python Module: JSON

Overview JavaScript Object Notation (JSON) is written in plain-text that is very useful to store…

Python Module: Datetime

Datetime Programs often include dates and time to perform interactive greetings, calculate age, stamping backups,…

Python Language Condensed

Strings # declare variable stringsomeString = "Hoy Matey"# Yank positional 1 to 3 within stringyank…

Git / Github / Gitlab

1. Install Git/Github/Gitlab This utility enables cloning of source codes to the local machine, among…

Getting Started with Kubernetes on Linux

Update 01-24-21: there's new blog to succeed this article here. 1. Install Kubectl Redhat-based commands:…