From df3ba4c00bbb71bc77866ee3fe1d99c25a90639e Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Thu, 12 May 2022 22:29:07 +0200 Subject: [PATCH] Added freebsd's notes to the knowledge base --- knowledge base/freebsd.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 knowledge base/freebsd.md diff --git a/knowledge base/freebsd.md b/knowledge base/freebsd.md new file mode 100644 index 0000000..30268a5 --- /dev/null +++ b/knowledge base/freebsd.md @@ -0,0 +1,34 @@ +# FreeBSD + +## TL;DR + +```shell +# Initialize package managers. +portsnap auto +pkg bootstrap +``` + +## Utilities worth noticing + +- `bsdinstall` +- `bsdconfig` + +## NTP time sync + +```conf +# file /etc/rc.conf +ntpd_enable="YES" +ntpd_sync_on_start="YES" +``` + +## Sources + +- [Ports] +- [NTPdate - not updating to current time] +- [Boinc] +- [sbz's FreeBSD commands cheat-sheet] + +[boinc]: https://people.freebsd.org/~pav/boinc.html +[ntpdate - not updating to current time]: https://forums.freebsd.org/threads/ntpdate-not-updating-to-current-time.72847/ +[ports]: https://docs.freebsd.org/en/books/handbook/ports/ +[sbz's freebsd commands cheat-sheet]: https://github.com/sbz/freebsd-commands