-
-
Save jedisct1/0c95d440e875d79489806863fece7b91 to your computer and use it in GitHub Desktop.
OpenBSD on VPS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Install VPS with Debian/Archinux/whatever you're comfortable with | |
* Get the bsd.rd file and put it in / for instance | |
wget ftp://ftp.openbsd.org/pub/OpenBSD/5.8/amd64/bsd.rd | |
* Add something along these lines in your grub.cfg (or /etc/grub.d/40_custom) | |
Make sure you adapt the (hd0,1) line to your config | |
menuentry "OpenBSD installer" { | |
set root=(hd0,1) | |
kopenbsd /bsd.rd | |
} | |
* Update the main grub.cfg: | |
update-grub on Debian | |
grub-mkconfig... on Arch | |
* Reboot the node, and choose "OpenBSD installer" in the grub menu. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment