new-install

Notes on OS intalls
git clone https://git.bracken.jp/new-install.git
Log | Files | Refs | LICENSE

commit 12936de202d25bf1f1145025b278f816af2dc599
parent e7262d2eea3e41eb401166acdbc8be6c2e323211
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 23 Jul 2021 16:09:33 -0700

FreeBSD: eliminate alsa install

Audio levels can be controlled via `/usr/sbin/mixer`, which is part of
the base FreeBSD install.

Diffstat:
Mfreebsd_install.md | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/freebsd_install.md b/freebsd_install.md @@ -261,17 +261,15 @@ use to log in, and type ctrl-d to save. You can find your public key in Configure audio --------------- -We'll want some mechanism for managing audio volume. The `alsa-utils` -package includes `amixer` which does the trick: - - sudo pkg install alsa-utils - -We may also want to disable the PC speaker and its annoying beep. Edit +We may want to disable the PC speaker and its annoying beep. Edit `/etc/sysctl.conf` and add the following: # Disable the terminal bell. kern.vt.enable_bell=0 +Audio volumes themselves can be controlled via the `mixer` tool, which is part +of the FreeBSD base install. + Set up NVIDIA drivers ---------------------