How to Run a Linux VM Using `bhyve` on FreeBSD Operating System
bhyve
on FreeBSD Operating SystemCategories:
5 minute read
Introduction
FreeBSD is a powerful and versatile operating system known for its robustness, performance, and advanced features. One of its standout features is the bhyve
hypervisor, which allows users to run virtual machines (VMs) on FreeBSD. bhyve
(pronounced “bee-hive”) is a type-2 hypervisor that provides a lightweight and efficient way to virtualize various operating systems, including Linux, Windows, and other BSD variants.
In this article, we will explore how to run a Linux VM using bhyve
on a FreeBSD system. We will cover the necessary steps, from setting up bhyve
to configuring and running a Linux VM. By the end of this guide, you should have a functional Linux VM running on your FreeBSD host.
Prerequisites
Before we dive into the process, ensure that you have the following prerequisites in place:
- FreeBSD System: A working FreeBSD installation (version 10.0 or later is recommended, as
bhyve
was introduced in FreeBSD 10.0). - Root Access: Administrative privileges on the FreeBSD system.
- Hardware Virtualization Support: Ensure that your CPU supports hardware virtualization (Intel VT-x or AMD-V). You can check this by running:If you see output related to VT-x or AMD-V, your CPU supports hardware virtualization.
grep -E 'VTx|AMD-V' /var/run/dmesg.boot
- Sufficient Resources: Ensure that your system has enough RAM, CPU cores, and disk space to allocate to the VM.
Step 1: Install bhyve
and Related Tools
bhyve
is included in the FreeBSD base system, but you may need to install additional tools to manage VMs effectively. The vm-bhyve
package is a popular management tool that simplifies the process of creating and managing VMs.
Update the FreeBSD Package Repository:
pkg update
Install
vm-bhyve
:pkg install vm-bhyve
Enable
bhyve
at Boot: Add the following lines to/etc/rc.conf
to enablebhyve
andvm-bhyve
at boot:bhyve_enable="YES" vm_enable="YES" vm_dir="zfs:zroot/vm"
Replace
zroot/vm
with the appropriate ZFS dataset or directory where you want to store your VMs.Start the
vm-bhyve
Service:service vm start
Step 2: Configure Networking for bhyve
bhyve
VMs require network connectivity, and you can configure this using a bridge interface. The bridge allows the VM to communicate with the host and the external network.
Create a Bridge Interface: Add the following lines to
/etc/rc.conf
to create a bridge interface:cloned_interfaces="bridge0" ifconfig_bridge0="addm em0 up"
Replace
em0
with the name of your physical network interface.Restart Networking: Restart the networking service to apply the changes:
service netif restart
Configure
vm-bhyve
Networking: Edit thevm-bhyve
configuration file (/usr/local/etc/vm.conf
) to use the bridge interface:switch_list="public" switch_public_interface="bridge0"
Step 3: Prepare the Linux ISO Image
To install a Linux distribution on the VM, you will need an ISO image of the Linux distribution you want to install. You can download the ISO from the official website of the Linux distribution.
Download the Linux ISO: For example, to download Ubuntu Server 20.04 LTS:
fetch https://releases.ubuntu.com/20.04/ubuntu-20.04.3-live-server-amd64.iso
Store the ISO in the
vm-bhyve
ISO Directory: Move the downloaded ISO to thevm-bhyve
ISO directory:mv ubuntu-20.04.3-live-server-amd64.iso /zroot/vm/.iso/
Step 4: Create and Configure the Linux VM
Now that the prerequisites are in place, you can create and configure the Linux VM using vm-bhyve
.
Create the VM: Use the
vm create
command to create a new VM. For example, to create a VM namedubuntu-vm
:vm create -t ubuntu -s 20G ubuntu-vm
This command creates a VM with a 20GB disk. Adjust the size as needed.
Configure the VM: Edit the VM configuration file (
/zroot/vm/ubuntu-vm/ubuntu-vm.conf
) to specify the ISO image and other settings:loader="uefi" cpu=2 memory=2G network0_type="virtio-net" network0_switch="public" disk0_type="virtio-blk" disk0_name="disk0.img" disk0_dev="sparse-zvol" uuid="..." network0_mac="..."
Adjust the
cpu
,memory
, and other settings according to your requirements.Attach the ISO Image: Attach the Linux ISO image to the VM:
vm iso ubuntu-vm /zroot/vm/.iso/ubuntu-20.04.3-live-server-amd64.iso
Step 5: Install Linux on the VM
With the VM configured, you can now start the VM and install Linux.
Start the VM: Start the VM using the
vm start
command:vm start ubuntu-vm
Connect to the VM Console: Connect to the VM console to interact with the Linux installer:
vm console ubuntu-vm
Follow the Linux Installation Process: Follow the on-screen instructions to install Linux on the VM. This process is similar to installing Linux on a physical machine.
Reboot the VM: Once the installation is complete, reboot the VM:
vm poweroff ubuntu-vm vm start ubuntu-vm
Detach the ISO Image: After the installation, detach the ISO image from the VM:
vm iso -d ubuntu-vm
Step 6: Manage the Linux VM
With the Linux VM up and running, you can manage it using vm-bhyve
commands.
Start and Stop the VM:
- Start the VM:
vm start ubuntu-vm
- Stop the VM:
vm poweroff ubuntu-vm
- Start the VM:
View VM Status: Check the status of the VM:
vm list
Access the VM Console: Connect to the VM console:
vm console ubuntu-vm
Modify VM Configuration: Edit the VM configuration file (
/zroot/vm/ubuntu-vm/ubuntu-vm.conf
) to change settings such as CPU, memory, or disk size.Delete the VM: If you no longer need the VM, you can delete it:
vm destroy ubuntu-vm
Conclusion
Running a Linux VM using bhyve
on FreeBSD is a straightforward process that leverages the powerful virtualization capabilities of the FreeBSD operating system. By following the steps outlined in this guide, you can set up, configure, and manage a Linux VM with ease. Whether you’re testing software, running a development environment, or exploring different Linux distributions, bhyve
provides a reliable and efficient platform for virtualization on FreeBSD.
With bhyve
and vm-bhyve
, FreeBSD users have access to a robust virtualization solution that is both lightweight and highly customizable. As you become more familiar with these tools, you can explore advanced features such as snapshots, cloning, and network configurations to further enhance your virtualization experience on FreeBSD.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.