getting started with openbsd
back to /blog blueskyopenbsd is fantastic! here's how to get started with it. this guide assumes you have a basic understanding of the unix command line, and are able to comprehend what the computer is asking you to do and respond accordingly. text commands are
written in white with a darker background
.note for virtualbox users: make sure you use an ahci controller for the disks, not the default ide!
part 0: why openbsd?
in the age where your computer actively works against your privacy and freedom, you ought to have something that can keep you safe. linux is a fantastic first step, but most distros put user-friendliness above keeping things up-to-date and secure by default. openbsd on the other hand, has a minimal attack surface by default (leading to their "Only two remote holes in the default install, in a heck of a long time!" blurb on their home page), many security hardening innovations, and the most sensible (in my opinion) take on full disk encryption - it takes the passphrase/keydisk pre-boot - where lots of linux distros have already partially booted before they get your login.in short, openbsd assumes you don't know what you're doing and makes sure you're safe despite that.
part 1: downloading & verifying
- download openbsd 7.6
- verify your download - on windows, run
certutil -hashFile install76.img SHA256
. on another unix, runsha256sum install76.img
. the sum should be973dfa837e4998f6c0f29d0afc9f40d85e29a3d2b25fcea8b3f13b4491fbedc0
- write the installer to a usb stick. on windows, download rufus. on another unix, run
dd if=install76.img of=[target usb stick] bs=1M
part 2: installation
- boot the usb stick. how to do this depends on your motherboard - look up "[model] BIOS key" if it isn't shown at boot
- when you reach the
boot>
prompt, hit enter - give the os a minute to start up, then choose
I
- the autoinstaller isn't what you need here - go through the installer and follow the instructions on-screen until it asks if you want the x window system to be started by xenodm - choose
yes
and continue - you can choose not to encrypt the disk, but it's highly recommended - choose
passphrase
- make sure to choose all sets - you'll need to figure out where they're installed.
cd0
on my system. - it will complain about missing the signature. continue anyway - we checked the shasum earlier.
- let it finish and reboot!
part 3: installing xfce
- login with the root user and whatever password you've set
- in the terminal that opened, run
fw_update
- install some essential packages with
pkg_add xfce xfce-extras doas
- it's a good idea to install a text editor here if you prefer something other thanvi
- open
/etc/X11/xenodm/Xsetup_0
with the aforementioned text editor and remove the line mentioningxconsole
- enable messagebus with
rcctl enable messagebus; rcctl start messagebus
- enable power management with
rcctl enable apmd; rcctl start apmd
- (if you've added non-root users) run
usermod -G operator [user name]
andusermod -G wheel [user name]
- (as every user that will use xfce) add the lines
export PATH="/usr/local/bin:$PATH"
andexec startxfce4
to~/.xsession
- log out and log back in. xfce should open. i recommend changing the cursor style (Applications>Settings>Mouse & Touchpad>Theme)
setting up for mobile use
as root:- install the power manager with
pkg_add xfce4-power-manager
- find your wifi hardware name with
ifconfig
- usually has "w" in it - (optional - if you want to auto-join wifi)
echo "join [wifi network name] wpakey [wifi network password]" >> /etc/hostname.[wifi card name]
andecho "dhcp" >> /etc/hostname.[wifi card name]
- (optional - if you want to manually join) run
ifconfig join [wifi network name] wpakey [wifi network password]