Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neox5/linux-setup
https://github.com/neox5/linux-setup
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/neox5/linux-setup
- Owner: neox5
- Created: 2024-02-10T18:20:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-12T22:01:09.000Z (11 months ago)
- Last Synced: 2024-02-12T23:24:10.634Z (11 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```