💾 Archived View for uscoffings.net › tech › freebsd › freebsd-server.gmi captured on 2023-03-20 at 18:09:07. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
[date: 2017-12-05]
I started using FreeBSD seriously during 8.x. I recently upgraded to 11.1, and realized that my server was feeling crufty and undocumented. So did a hardware upgrade and reinstalled fresh.
Some notes follow.
Basic:
Tools to manage scrapbook:
build x11-drivers/xorg-drivers with correct driver enabled
Blog:
Optional for Mutt-based email client:
Development tools:
FreeBSD itself:
Build server:
After installing everything, you can clean up unnecessary packages with "pkg autoremove". Sometimes this can make subsequent upgrades easier, too.
zpool create ...
zfs export nfs
Edit `/etc/fstab` to mount `/tmp` using `tmpfs`:
tmpfs /tmp tmpfs rw 0 0
Add `,noatime` to /etc/fstab for speed. Perhaps not for `/var` if that is a separate slice.
Mount /proc by default (TODO or not... what needs this?):
proc /proc procfs rw 0 0
Reboot into install shell. Disable journaling for speed:
tunefs -j /dev/ada4p2
Enable TRIM if running on an SSD:
tunefs -e /dev/ada4p2
Label the root filesystem. Mount by label. (My motherboards recognize the spinning disks--which tend to come and go--before the SSD.)
Install /usr/ports/sysutils/smartmontools
Add to /etc/rc.conf:
sshd_enable="YES"
Add to /etc/ssh/sshd_config:
PermitRootLogin yes
ClientAliveInterval 60
ClientAliveCountMax 10
Add to /etc/rc.conf:
defaultrouter="192.168.1.1"
hostname="server.uscoffings"
ifconfig_vr0="inet 192.168.1.201 netmask 255.255.255.0"
Add to /etc/hosts:
192.168.0.201 server.uscoffings server
Add to /etc/make.conf:
CPUTYPE?=native
OPTIONS_UNSET=NLS DOCS EXAMPLES DEBUG NIS SWIG LUA PULSEAUDIO JACK
OPTIONS_SET=OPENSSL
Install port /usr/ports/net/mDNSResponder
Create /usr/local/etc/mDNSResponder.conf with:
UsCoffings _afpovertcp._tcp local. 548
Add to /etc/rc.conf:
mdnsd_enable="YES"
Install port /usr/ports/audio/mt-daapd
Add to /etc/rc.conf:
mt_daapd_enable="YES"
Edit /usr/local/etc/mt-daapd.conf
Configure ZeroConf.
Install port /usr/ports/net/netatalk
If you compiled WITH_PAM support, you need to edit /etc/pam.conf to add
support for netatalk. To do so, add the following three lines to this
file:
netatalk auth required pam_unix.so try_first_pass
netatalk account required pam_unix.so try_first_pass
netatalk session required pam_permit.so
Add to /etc/rc.conf:
netatalk_enable="YES"
afpd_enable="YES"
atalkd_enable="YES"
slpd_enable="YES"
Add to /usr/local/etc/afpd.conf:
- -noddp
Add to /usr/local/etc/netatalk.conf:
ATALK_NAME=UsCoffings
AFPD_GUEST=nobody
TODO: update Add to /usr/local/etc/AppleVolumes.default:
~
/usr/share/music Music allow:@uscoffings
/usr/share/Library Library allow:@uscoffings
/usr/share/www/apache22/data WebServer allow:@uscoffings
Install port /usr/ports/
Configure /usr/local/etc/rsyncd.conf.
Add to /etc/rc.conf:
rsyncd_enable="YES"
Install port /usr/ports/mail/postfix.
Add to /etc/rc.conf:
postfix_enable="YES"
sendmail_enable="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
TODO: Add to /etc/periodic.conf to disable sendmail-specific cleanups:
daily_clean_hoststat_enable="NO"
daily_status_mail_rejects_enable="NO"
daily_status_include_submit_mailq="NO"
daily_submit_queuerun="NO"
Edit /etc/mail/aliases... perhaps forward root's email to chuck
Regenerate /etc/aliases.db by running newalises
Edit /usr/local/etc/postfix/main.cf:
set myhostname
set mydomin
Install port /usr/ports/mail/dovecot.
web mail
http://www.freesoftwaremagazine.com/articles/secure_email_server_bsd_part_1
List of ports to expose externally:
22 (1221 at the router)
80
point domain at server
backup media -- drive, DVD
archivers/parchive
sysutils/dar
generate SSL certificate (to be used by dovecot, etc)
what's the best port manager?
portmaster
seems to get confused often
portupgrade
ruby, slow, but works
mail:
pop3 server
web server for laura
cron
mon
backup of server
power down
cvsup
better tab completion
x11
install xorg; set hald and dbus to start; run moused
samba
printer
library
kill the beep
echo "hw.syscons.bell=0" >> /etc/sysctl.conf
?? vs rc.conf: keybell="off"
/etc/rc.conf:
keyrate="fast"
/etc/rc.conf:
powerd_enable="YES"
saver="green"
TODO console - better res -- need kernel rebuild (see vidcontrol)
Amazingly, UTF8 is still not default out-of-the-box.
portsnap fetch
portsnap update
portmaster -a
freebsd-update fetch
Add self to groups:
wheel
vboxuser
uBlock Origin: I am toying with blocklists on the [pfSense](pfsense) firewall, but uBlock is still required on firefox.
`~/.bashrc`:
export CLICOLOR=1
urxvt