From 530e89d4e279843883a48cc154482f53929afcb4 Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Mon, 12 Sep 2022 22:30:17 +1000 Subject: [PATCH] Use existing user for installation instructions When new to Embassy one might not know that the default user is `start9`. These instructions refer to a `root` user that does not exist by default, however the user should be `start9`. Additionally, it's easier to refer to the home directory of that user than to some other directory. --- .../build-package-example/10_install-package.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/source/developer-docs/build-package-example/10_install-package.rst b/site/source/developer-docs/build-package-example/10_install-package.rst index 3f799dc..8139a10 100644 --- a/site/source/developer-docs/build-package-example/10_install-package.rst +++ b/site/source/developer-docs/build-package-example/10_install-package.rst @@ -29,19 +29,19 @@ Now that we have a process for iterating on producing a valid package for Embass .. code:: bash # Confirm you can ssh into your Embassy - ssh root@ + ssh start9@ # Log out of Embassy SSH session exit - scp .s9pk ssh root@:/working/directory/path + scp .s9pk ssh start9@:/working/directory/path - eg. scp hello-world.s9pk ssh root@embassy-12345678.local:/root + eg. scp hello-world.s9pk ssh start9@embassy-12345678.local:~ 4. Finally, install the package on an Embassy device: .. code:: bash - ssh root@ + ssh start9@ # log in to the command line interface using the Embassy password embassy-cli auth login embassy-cli package install hello-world.s9pk