Month: January 2021

Kubernetes Container Deployment with NFS Persistent Volumes

Introduction: Update: we have provided a practical application of the knowledge conveyed in this article…

PowerShell: Backup Microsoft Dynamics CRM Database

# backupCrmOrgDatabase.ps1 # This script is to be invoked in the context of the Administrator…

How to Mount NFS Share On Linux Client

# Install prerequisite sudo apt-get install nfs-common # Set variables nfsShare=test # assuming that the…

PowerShell: How to Quickly Ping a Target

Method 1: Legacy ping command # Legacy method that works without any fusses $pingResult=ping google.com…

Troubleshooting Active Directory Replication Issues

How to Check Domain Controller Syncronization Check replication summary [TEST-DC02]: PS C:\Users\testadmin\Documents> Repadmin /replsummary Replication…

How to Run OpenMediaVault with Pass-through Disks in VMWare ESXi

Assumptions: 1. The ESXi host in this lab is available with three (3) 1TB hard…

Linux: Check CPU Utilization

There are many utilities that would provide this information. The easiest one that is available…

PowerShell: Get Failed Scheduled Tasks on a Windows Machine

The following function will query the local Windows Tasks Scheduler for custom schedules and output…

How to Get Table Sizes of a Database in Microsoft SQL Server

Obtain Table Sizes of One or Multiple Names -- Get sizes of multiple tables use…

PowerShell: Mapping and Unmapping Network Drives

How to Map Network Drive using Dot Net Framework $driveLetter='T' $smbPath='\\FILESERVER\SHARENAME' $username='DOMAIN\USERNAME' $password='PASSWORD' $networkDrivesObject =…

How to Add a New Disk as LVM Volume to a Linux Machine without Rebooting

Step 1: Scan all SCSI host controllers sudo su # run as root scsiPath=/sys/class/scsi_host #…

R5 2400G Zen CPU Cores Undervolt and Overclocking

Some quick tested values: 3600 Mhz | 1.225 mV ~ 70 Watts (need to also…

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:~]…