Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ssh keygen

ssh-keygen -t rsa -C john@example.com
Comment

ssh keygen

ssh-keygen -t rsa -b 8192
Comment

ssh keygen

ssh-keygen -C "email"
# you can use different settings
# ssh-keygen -t ed25519 -C "your_email@example.com"
# ssh-keygen -t rsa ...
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
# add the public key to remote
cat ~/.ssh/id_ed25519.pub | ssh <user>@<remote> 'cat >> ~/.ssh/authorized_keys'
# OR
ssh-copy-id -i ~/.ssh/id_ed25519.pub <user>@<remote>
Comment

ssh keygen

#generate the key
ssh-keygen -t ed25519 -C <email> -f <filename>
#copy the ssh public key
clip < ~/.ssh/<filename>.pub

#make sure to change the git remote to SSH mode!
Comment

sshkeygen

ssh-keygen -t rsa -b 2048 -f <some_name>
Comment

ssh keygen

ssh-keygen -t ed25519 -C "<comment>"
Comment

PREVIOUS NEXT
Code Example
Shell :: GREPCC token 
Shell :: bash hide file 
Shell :: node check installed modules 
Shell :: hwo to add custom commands in bash 
Shell :: yum install node version 12 
Shell :: my apache is not running ubuntu 
Shell :: powershell credential object 
Shell :: install i18next-browser-languagedetector 
Shell :: flutter web setup 
Shell :: openssl p12 to pem 
Shell :: set gunicorn timeout via command 
Shell :: linux show uid 
Shell :: bash check if python package is installed 
Shell :: git error push declined due to email privacy restrictions 
Shell :: powershell add to env path 
Shell :: give permission to user in ubuntu 
Shell :: gitignore which rule 
Shell :: get wsl version 
Shell :: curl request print response 
Shell :: pip install pygame 
Shell :: restart wsl2 windows 10 
Shell :: bash adb command not found... on linux 
Shell :: npm install typeorm 
Shell :: Skype Downlaod Command. 
Shell :: enable wifi raspberry pi headless 
Shell :: linux get user id 
Shell :: windows nginx stop 
Shell :: install opencv raspberry pi 
Shell :: Push existing folder ghithub / gitLab 
Shell :: how install pandas in python 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =