stuff/os/FreeBSD/FreeBSD_on_RPI.md
Moni Ghaoui 47aa1a3484 FC
2025-04-14 19:51:40 +02:00

1,019 B

General

Default username passwords are:

freebsd
freebsd

and

root
root
ssh freebsd@192.168.1.108

Setup ntpd

You need to make sure that your date is close to the real time

date 202406211441

Set the timezone

tzsetup
sysrc ntpd_enable=YES

Set the time:

ntpdate -v -b in.pool.ntp.org

Start the service

service ntpd start

Update the system

pkg update

Install my favorite packages

pkg install bash sudo tmux htop neovim git bastille

Add "wheel" to the suoers file:

visudo

Change shell

chsh -s /usr/local/bin/bash

Add a user

adduser

Change the hostname

sysrc hostname="rp4-8"

Delete the freebsd user that comes with the standard installation:

rmuser freebsd