new-install

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

commit 38dabb0a7593514c1dff85ba5d8b6b97f6a0ea56
parent b60b628445eada7648ae08b8a57468f2b928f1ea
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed,  8 Sep 2021 09:38:34 -0700

arch: Eliminate sudo steps prior to sudo install

Those steps were previously copied from elsewhere after sudo
installation, but need to be executed near the beginning. At this point,
we're already operating in a root terminal, so sudo invocation is
unnecessary.

Diffstat:
March_install.md | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch_install.md b/arch_install.md @@ -317,13 +317,13 @@ get you blacklisted. Finally, enable the service: - sudo systemctl enable ntpd.service + systemctl enable ntpd.service Enable and start the NTP service: - sudo systemctl enable ntpd.service - sudo systemctl start ntpd.service + systemctl enable ntpd.service + systemctl start ntpd.service