From e60302efe8a41507768e4535d6617eb2def43d6c Mon Sep 17 00:00:00 2001 From: gStart9 <106188942+gStart9@users.noreply.github.com> Date: Wed, 14 Jun 2023 17:05:35 +0000 Subject: [PATCH] Fixup Debian CA Cert instructions (to accomidate Pop-OS) (#398) * Fixup debian instructions (specifically to accomidate Pop-OS) * omitted a word --- .../connecting/connecting-lan/lan-os/lan-linux.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/site/source/user-manual/connecting/connecting-lan/lan-os/lan-linux.rst b/site/source/user-manual/connecting/connecting-lan/lan-os/lan-linux.rst index 0afd0fa..8fd1154 100644 --- a/site/source/user-manual/connecting/connecting-lan/lan-os/lan-linux.rst +++ b/site/source/user-manual/connecting/connecting-lan/lan-os/lan-linux.rst @@ -53,12 +53,16 @@ Here we will insert your Start9 server's CA certificate into Linux's trust store mv ~/.pki ~/.pki.mozilla-old - Finally, we will change directory to the folder where you downloaded your Start9 server's Root CA (usually `~/Downloads`), and run the following commands to add your Start9 server's CA certificate to the OS trust store: + .. note:: This step is unnecessary on some systems like Pop-OS, so if you get an error, you can safely ignore it. + + Finally, we will change directory to the folder where you downloaded your Start9 server's Root CA (usually `~/Downloads`), and run the following commands (after carefully replacing `adjective-noun` with your server's unique hostname, below) to add your Start9 server's CA certificate to the OS trust store: .. code-block:: bash cd ~/Downloads - sudo cp ".crt" /usr/local/share/ca-certificates/ + sudo mkdir -p /usr/share/ca-certificates/start9 + sudo cp "adjective-noun.local.crt" /usr/share/ca-certificates/start9/ + sudo bash -c "echo 'start9/adjective-noun.local.crt' >> /etc/ca-certificates.conf" sudo update-ca-certificates In the output it should say ``1 added`` if it was successful.