Ssh

Erstellen

ssh-keygen -t ed25519 -C "your_email@example.com"

Legacy

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Kopieren

cat ~/.ssh/id_rsa.pub | pbcopy
cat ~/.ssh/id_ed25519.pub | pbcopy

PATH

anzeigen

echo $PATH

erweitern

export PATH=/usr/local/sbin:$PATH >> ~/.zshrc

Last updated