Skip to content

Instantly share code, notes, and snippets.

View jstrassburg's full-sized avatar

JiM Strassburg jstrassburg

View GitHub Profile
@sneal
sneal / windowsdiego.md
Last active May 13, 2023 15:01
Add Windows diego to dev pcf

This builds upon the exsting PcfDev Vagrant box by adding a Windows 2012R2 cell capable of hosting .NET 4.5 applications.

Bring up the PcfDev Vagrant box

Add the following provisioner block before the existing provisioner block in the PcfDev Vagrantfile and before you initially bring up the box:

  # Special provisioner to support Windows Cells
 config.vm.provision "shell", run: "once" do |s|
@jstrassburg
jstrassburg / lvm.md
Last active April 13, 2017 17:52
Linux Logical Volume Management [LVM]

Linux Logical Volume Management [LVM]

Source: https://www.howtoforge.com/linux_lvm

LVM Layout

  • /dev/sdX or /dev/hdX are physical HDDs (SCSI or SATA)
  • /dev/vdX are virtual HDDs (virtualization aware driver)
  • /dev/sda1 would be the first partition on the /dev/sda disk