After the clean install of ubuntu, I only had a 4GB OS partition setup for me. This partition lived on a single physical volume (PV), volume group (VG) and logical volume (LV). These are important concepts to understand Linux filesystem structures. The first step in expanding my storage is to create a separate logical volume … Continue reading Plex Server Setup – Part II: Making a Filesystem
Linux
Plex Server Setup – Part I: Resizing OS Volume
Full disclosure, as someone who’s spent most of his career designing and building software, I don’t often get the opportunity to tackle good old fashioned system administration tasks, especially on Linux. However, since my introduction to PLEX –an open source home media server—I’ve had more opportunities. I’ve recently acquired a new server that I plan … Continue reading Plex Server Setup – Part I: Resizing OS Volume
OpsWorks + Auto-scaling Windows Stacks
AWS has multiple ways of enabling Auto-scaling of EC2 instances. Two of which are Auto-Scaling Groups and OpsWorks. When setting up a stack in OpsWorks you’ll notice that you can add Load-based instances to scale the stack beyond the fixed instances you establish. The scale configuration that you specify on the below screen should be … Continue reading OpsWorks + Auto-scaling Windows Stacks
How to sterilize your Docker Host
Here is a pretty handy set of commands that will clean out your Docker host of all containers and images. It’s useful when resetting a demo environment to start fresh. Step 1: Stop all docker images docker stop $(docker ps -aq) Step 2: Remove all containers docker rm $(docker ps -aq) Step 3: Remove all … Continue reading How to sterilize your Docker Host
Installing Ubuntu x64 on a Hyper-V Virtual Machine
I recently wanted to get a local instance of Docker on my workstation to kick around some cool things happening in the Microsoft space on Linux (e.g. Service Fabric on Linux, SQL Server on Linux, ASP.NET Core on Linux) locally so I thought I would setup a Hyper-V virtual machine with Ubuntu Server and save … Continue reading Installing Ubuntu x64 on a Hyper-V Virtual Machine