Differences between revisions 9 and 10
Revision 9 as of 2023-01-08 22:58:02
Size: 1413
Comment:
Revision 10 as of 2023-01-08 23:16:03
Size: 1208
Comment:
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
----
Line 20: Line 19:

== Administration ==



=== Operating System Updates ===
=== Upgrading ===
Line 44: Line 38:


=== Software ===

See [[BSD/FreeBSD/Packaging|here]] for details on software and packages.
----
Line 52: Line 42:
=== Services === == Administration ==
Line 54: Line 44:
FreeBSD uses '''BSD init''' for services. To enable SSH, edit `/etc/rc.conf` with:  * [[BSD/Init|init]]
 * [[BSD/FreeBSD/Pkg|pkg]]
Line 56: Line 47:
{{{
sshd_enable="YES"
}}}
Line 60: Line 48:
This enables the service. To start it immediately, run `service sshd start`. ----



== Design ==

 * [[BSD/FreeBSD/Packaging|packaging system]]

FreeBSD

FreeBSD is one of the most popular branches of the BSD project, and one of the oldest open-source branches. It emphasizes security through design and offers a featureful packaging toolchain.


Installation

Grab an image from the official repositories. You likely will want either the -memstick.img or the mini-memstick.img images. The former is larger, the latter requires an internet conection during installation.

dd the image onto your device, and the rest will explain itself.

Upgrading

Updates to the operating system are handled by freebsd-update(8).

Each minor and major version release will have it's own upgrade notes. The general process is:

# run current version updates
freebsd-update fetch
freebsd-update install

# fetch new version updates
freebsd-update upgrade -r MAJOR.MINOR-RELEASE
freebsd-update install

# reboot
shutdown -r now


Administration


Design


CategoryRicottone

BSD/FreeBSD (last edited 2023-01-08 23:16:03 by DominicRicottone)