@@ -131,11 +131,11 @@ First, check if your agent is at home by typing
...
@@ -131,11 +131,11 @@ First, check if your agent is at home by typing
```
```
ssh-add -l # with `-l` as in "list"
ssh-add -l # with `-l` as in "list"
```
```
This will list all identities currently represented by the agent. Think of "identity" as an SSH key that you want to add to the SSH authentication agent. If you see the message `"Could not open a connection to your authentication agent."`, you need to activate the agent first:
This will list all identities currently represented by the agent. Think of "identity" as an SSH key that you want to add to the SSH authentication agent. If you see the message `"Could not open a connection to your authentication agent"`, you need to activate the agent first:
```
```
eval "$(ssh-agent -s)"
eval "$(ssh-agent -s)"
```
```
When the agent is active, you may see a listing of identities, and you're good to go if your Ramses-key is part of it. However, if you see a message like `"This agent has no identities."`, your key still needs to be added:
When the agent is active, you may see a listing of identities, and you're good to go if your Ramses-key is part of it. However, if you see a message like `"This agent has no identities"`, your key still needs to be added:
```
```
ssh-add ~/.ssh/id_ed25519 # supply your private-key, may also be ~/.ssh/id_rsa
ssh-add ~/.ssh/id_ed25519 # supply your private-key, may also be ~/.ssh/id_rsa