WINDOWS

Map Windows share to Linux

Map Windows share to Linux

Quick way to copy files from Windows to Linux

Nathan Obert
Mounting Windows on Linux Setup on Ubuntu sudo apt-get install keyutils sudo apt-get install cifs-utils Setup on Redhat sudo yum install keyutils cifs-utils Syntax UNC=server.domain.com/share USERNAME=yourwindowslogin DOMAIN=NAMEOFDOMAIN PASSWORD=yourpassword sudo mkdir -p /mnt/${UNC} sudo mount -t cifs -o username=${USERNAME},domain=${DOMAIN},password=${PASSWORD} //${UNC} /mnt/${UNC}
Amazon Web Services (AWS) Command Line Interface (CLI) on Windows 11

Amazon Web Services (AWS) Command Line Interface (CLI) on Windows 11

Installation of AWS CLI on Windows 11

Nathan Obert
Introduction I will be installing and doing basic configuration of Amazon Web Services (AWS)’s Command Line Interface (CLI) on Windows 11. AWS CLI is a shell based means to work with AWS. The CLI provides the ability to list out resources at Amazon like which EC2 instances are running, poke around S3 buckets, inspect pretty much anything at Amazon. It also provides advanced features like copying information to and from S3.
Rancher Desktop for Kubernetes and Docker on Windows 11

Rancher Desktop for Kubernetes and Docker on Windows 11

Installation of Rancher Desktop for Kubernetes and Docker on Windows 11

Introduction Rancher Desktop is a Kubernetes and Docker platform that is a replacement for Docker Desktop. I’ll be installing and configuring it using the installation guide provided in Rancher’s Documentation Rancher is a replacement for Docker Desktop. Rancher provies you helm, kubernetes, docker, the CRI runtimes of dockerd or containerd kubernetes. It integrates in nicely with WSL if you wish to use Linux instead of Windows. Additionally it lets you choose which version of Kubernetes you want to run.