diff --git a/docs/blockchain-compute/usage/via-user-interface/creating-an-ssh-key.md b/docs/blockchain-compute/usage/via-user-interface/creating-an-ssh-key.md index f41557b..2ba1cad 100644 --- a/docs/blockchain-compute/usage/via-user-interface/creating-an-ssh-key.md +++ b/docs/blockchain-compute/usage/via-user-interface/creating-an-ssh-key.md @@ -17,7 +17,7 @@ For MacOS and Linux users: 2. Paste the text below, substituting in your email address. ```bash -$ ssh-keygen -t ed25519 -C "your_email@example.com" +ssh-keygen -t ed25519 -C "your_email@example.com" ``` @@ -47,7 +47,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav 4. Start the ssh-agent in the background. ```bash -$ eval "$(ssh-agent -s)" +eval "$(ssh-agent -s)" > Agent pid 59566 ``` @@ -62,14 +62,14 @@ Depending on your environment, you may need to use a different command. For exam First, check to see if your ~/.ssh/config file exists in the default location. ```bash -$ open ~/.ssh/config +open ~/.ssh/config > The file /Users/YOU/.ssh/config does not exist. ``` If the file doesn't exist, create the file. ```bash -$ touch ~/.ssh/config +touch ~/.ssh/config ``` Open your ~/.ssh/config file, then modify the file to contain the following lines. If your SSH key file has a different name or path than the example code, modify the filename or path to match your current setup. @@ -86,7 +86,7 @@ IdentityFile ~/.ssh/id_ed25519 6. Add your SSH private key to the ssh-agent and store your passphrase in the keychain. If you created your key with a different name, or if you are adding an existing key that has a different name, replace id_ed25519 in the command with the name of your private key file. ```bash -$ ssh-add --apple-use-keychain ~/.ssh/id_ed25519 +ssh-add --apple-use-keychain ~/.ssh/id_ed25519 ``` That’s it, you’re ready to use your SSH key on this step in the Create a Machine process!