Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion content/posts/170214-create-ssh-keys-ubuntu.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ Optionally, you can also specify your email address with `-C` (otherwise
one will be generated off your current Linux account):

```bash
ssh-keygen -t rsa -b 4096 -C my.email.address@company.com
ssh-keygen -o -t rsa -b 4096 -C my.email.address@company.com
```

(Note: the `-o` option was introduced in 2014; if this command fails for you, simply remove the `-o` option)

The first prompt you will see asks where to save the key. However, there are
actually two files that will be generated: the public key and the private
key.
Expand Down