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

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 :: linux search for files larger than 
Shell :: embed photos google drive 
Shell :: install vue js ubuntu 
Shell :: push project to github 
Shell :: install geopandas 
Shell :: show saved wifi password windows 
Shell :: xdg check defult browser 
Shell :: centos start docker 
Shell :: docker postgresql restore database 
Shell :: check if variable contains string bash 
Shell :: pytesseract 
Shell :: electron build windows exe 
Shell :: linux install fzf 
Shell :: chkconfig httpd on Amazon Linux 2 AMI 
Shell :: ssh-keygen rsa 
Shell :: php install apcu 
Shell :: find max depth linux 
Shell :: check ram on linux 
Shell :: install chrome beta on linux mint 
Shell :: linux tail colorful 
Shell :: change github remote repo 
Shell :: kali sources.list 
Shell :: install dirsearch 
Shell :: waybar emoji not wrok 
Shell :: git bash upstream branch change 
Shell :: how to know what container is using a volume? 
Shell :: ufw block ip linux 
Shell :: Running Laravel Application On Another Port 
Shell :: ubuntu last logs 
Shell :: exit git log 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =