Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| kb:freebsd [2018/11/20 12:33] – created yehuda | kb:freebsd [2022/01/03 16:03] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== FreeBSD ====== | ====== FreeBSD ====== | ||
| + | |||
| + | ===== Why to use FreeBSD ===== | ||
| + | |||
| + | - ZFS | ||
| + | - Community & Support / like linux | ||
| + | - Free & Open source | ||
| + | |||
| + | ===== Why not? ===== | ||
| + | |||
| + | - Dropbox - not works (v11.0) | ||
| + | |||
| + | ===== Why to use FreeBSD ===== | ||
| + | < | ||
| + | Log in as root, and do post-installation updates, to wit: | ||
| + | portsnap fetch extract update | ||
| + | freebsd-update fetch install | ||
| + | install an initial-but-minimal working system, starting with pkg(8), the packaging system itself: | ||
| + | pkg bootstrap | ||
| + | Developer’s basic toolkit (and I prefer bash for an interactive shell): | ||
| + | pkg install git bash gmake cmake pkgconf gettext-tools binutils | ||
| + | echo fdesc /dev/fd fdescfs rw 0 0 >> /etc/fstab | ||
| + | echo proc /proc procfs rw 0 0 >> /etc/fstab | ||
| + | An X Server and a backup X11 environment (ancient): | ||
| + | pkg install xorg xterm twm | ||
| + | Desktop technologies (modern): | ||
| + | pkg install hal dbus | ||
| + | echo hald_enable=YES >> / | ||
| + | echo dbus_enable=YES >> / | ||
| + | Clean up | ||
| + | pkg autoremove | ||
| + | pkg clean | ||
| + | rm / | ||
| + | Reboot again. | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Other ===== | ||
| + | |||
| + | |||
| + | Resources: | ||
| + | * https:// | ||
| + | * https:// | ||
| https:// | https:// | ||
| + | https:// | ||
| + | http:// | ||