Author: kimconnect

Ubuntu: Disable Annoying Update Notifier

Want to get rid of this? Ubuntu: Go to System > Administration > Software Sources…

Linux: How to Check CPU Speed

# Check cpu capacity kim@kim-linux:~$ sudo lshw -c cpu | grep capacity capacity: 3600MHz #…

Linux: How to Check Graphics Card Memory

List all the PCI devices: lspci # Sample Outout:root@kim-linux:/home/kim# lspci00:00.0 Host bridge: Intel Corporation Device…

Linux: GREP Training

Lorum Ipsum - let's learn about grep, ya'll Examples: # Get information only on the…

How To Install Adobe Acrobat Reader DC on Linux Mint 20

Adobe Acrobat Reader may be available as a .deb install-able package. However, its 'Reader DC'…

How To Install Kubernetes on Ubuntu 20.04 Server

Overview Docker is available in 2 versions, Community Edition (CE) and Enterprise Edition (DE). The…

How To Change VMWare ESXi Hypervisor’s IP Address and Host Name

# List hypervisor's network interfaces esxcli network ip interface ipv4 get # Sample output [root@esx76:~]…

MBR & GPT Disk Partitioning Comparisons

A quote one has provided to colleagues on this topic: Although speed is the same…

Enable Hibernation Option on Linux Mint 20

At first glance, one would be tempted to simply expand an existing a /swapfile as…

How to Become a DevOps Engineer in 2020

This note is scribbled up with about 5-minute of time. Thus, it may not have…

PowerShell: Get Windows Resource Utilization

# getWindowsResourceUtilization.ps1 # version 0.02 # Gather information on a list of Windows Machines #…

How to Clone VMWare Virtual Machine using CLI

1. SSH into the ESXi host to perform VM cloning via Command Line Interface (CLI)…

Microsoft SQL Server: How to Use T SQL to Move Transaction Log Files

Automated Script: # moveDbStorage.ps1 # Version 0.0.1 # This version is intended for a local…

How To Install Ubuntu Server 20.04

Overview: As of January 2021, the free version of Redhat, namely CentOS 8 has been…

PowerShell: Automating Dynamics CRM Migration

This is the source code that has been used to move hundreds of Dynamics CRM…

How To Format HTML Content For Email

Major email service providers such as Google Gmail and Microsoft Office 365 have been supporting…

PowerShell: Time Stamp Variable

This is useful in almost any script as it enables the accurate timestamp of log…

How To Disable Microsoft One Sync Service

OneSyncSvc is the parent object of OneSyncSvc_#####, and Sync Host_##### is the child's display name.…

Linux: Creating Volume Shortcuts

Run xfce4-keyboard-settings > select the 'Application Shortcuts' tab > Add > input one of the…

Linux: ‘Initramfs Unpacking Failed’ Error Upon Booting

Error: initramfs unpacking failed: Decoding failed Resolution: sudo sed -i 's/COMPRESS=lz4/COMPRESS=gzip/g' /etc/initramfs-tools/initramfs.confsudo update-initramfs -u# reboot…