Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/neox5/linux-setup


https://github.com/neox5/linux-setup

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Linux Setup

## SSH KEYS
```bash
# generate key
# and save as /home/user/.ssh/hostname_ed25519 (has to be absolute path)
ssh-keygen -t ed25519 -C "[email protected]"

# print pub key
cat /home/user/.ssh/hostname_ed25519.pub

# ssh config: ~/.ssh/config
# Host github.com
# HostName github.com # this is the important part
# User git
# IdentityFile ~/.ssh/hostname_ed25519
# IdentitiesOnly yes
```