Virtualization allows for the multiplexing of different operating systems on the same hardware. This allows for better utilization of system resources and greater flexibility, enabling common processes such as cloud computing.
Virtual Machine Monitors (VMM) A VMM, or a hypervisor, is at the heart of system virtualization. A VMM allows multiple virtual machines to run on a physical machine, much like an operating system allows multiple processes to run on a CPU.
Simple cheatsheet for me to get started tracking freebsd and making changes to the codebase. Requirements: git, git arc
Tracking the Source Tree Copy local repository git clone git@github.com:dumrich/freebsd-src.git Set Upstream Upstream is the original codebase, usually set as a remote repository
git remote add upstream https://git.freebsd.org/src.git Show recent commits Show a list of recent commits with some other information
git log Checkout a branch You want to work on a feature locally.