Custom OpenBSD Droplet on DigitalOcean

nabbisen - Mar 6 '19 - - Dev Community

* The cover image is originally by KevinYi and edited with great appreciation.

Summary

Hi : )
This post shows how to create OpenBSD droplet in DigitalOcean.

The process is simple and small:

  1. DigitalOcean Panel
    • Create FreeBSD drolpet with SSH login enabled.
  2. SSH
    • Download OS image.
    • Write it into the storage.
  3. DigitalOcean Droplet Console
    • Reboot and run the installer.

The detailed steps are below.

✿ ✿ ✿

Preparation

DigitalOcean Panel

First of all, (sign up as needed and) sign in DigitalOcean.

Then, create FreeBSD droplet in the menu of DigitalOcean: "Create Droplets".

* Note: Both ufs and zfs are acceptable.

Remember to set up "Add your SSH keys".
Besides, we can generate the key via command line like this:

$ ssh-keygen -t rsa -C "%YOUR-EMAIL-ADDRESS%"
Enter fullscreen mode Exit fullscreen mode

SSH

Connect to the droplet as root or superusers with SSH client:

$ ssh -i ~/.ssh/%id_rsa% root@%YOUR-HOST%
Enter fullscreen mode Exit fullscreen mode

Download the installer image as minirootXX.fs file:

# fetch https://cdn.openbsd.org/pub/OpenBSD/6.5/amd64/miniroot65.fs
miniroot65.fs                                 100% of 4800 kB   35 MBps 00m00s
Enter fullscreen mode Exit fullscreen mode

Then, stop swap:

# # case ufs:
# swapoff /dev/gpt/swap
# # case zfs:
# swapoff /dev/gpt/swap0
Enter fullscreen mode Exit fullscreen mode

Also, stop geom debugging in order to enable writing data into storage:

# sysctl kern.geom.debugflags=0x10
kern.geom.debugflags: 0 -> 16
Enter fullscreen mode Exit fullscreen mode

Write the installer image into the storage:

# dd if=miniroot65.fs of=/dev/vtbd0 bs=512k
9+1 records in
9+1 records out
4915200 bytes transferred in 0.032766 secs (150008149 bytes/sec)
Enter fullscreen mode Exit fullscreen mode

Are you ready to "Access console"?
Click this button to start DigitalOcean console:

panel image

Keep it open.

OK. Let's reboot the virtual machine.
Type this in your ssh session:

# reboot
Enter fullscreen mode Exit fullscreen mode

Now, ssh is finished.
Switch to DigitalOcean console.

Installation

DigitalOcean Droplet Console

Wait for the boot completion with DigitalOcean console open.
The OpenBSD installer will ask you which option to choose clearly as usual!

console image

* Tip: Choosing shell instead of install or autoinstall enables us to apply full disk encryption.
In order to do so, run the command like this (Excerpt) on the shell:
bioctl -c C -l /dev/sd0a softraid0
Run install afterwards.

When configuring networking with the installer, you need to use the value of "PUBLIC IP ADDRESS"/"GATEWAY"/"NETMASK" at the bottom of the console instead of DHCP and so on:

  • IPv4 address for vio0? = "PUBLIC IP ADDRESS"
  • Netmask for vio0? = "NETMASK"
  • Default IPv4 Route = "GATEWAY"
  • DNS nameservers: 8.8.8.8 8.8.4.4 (For example)

You will get location of sets via http.

After all of the installation are finished and the virtual machine is rebooted, you would say "Hello, OpenBSD":

finished

✿ ✿ ✿

I wish you enjoy happy computing with OpenBSD on DigitalOcean, the cool system and the cool service : )

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player