Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

authorized by ssh without password

# create keys
ssh-keygen -t rsa -b 4096 -f ~./.ssh/auth_rsa
# copy public key into sever
scp ~/.ssh/auth_rsa.pub user@ip:~/key.pub 
# connected to server
ssh user@ip
# move key into correct folder for you
cat ~/key.pub >> ~/.ssh/authorized_keys
rm -rf ~/key.pub
# and connect with secret key
ssh user@ip -i ~/.ssh/auth_rsa


#================= on linux will try =========================#
ssh-keygen -t rsa -b 4096 -f ~./.ssh/auth_rsa
ssh-copy-id -i ~/.ssh/auth_rsa.pub user@ip
ssh user@ip 
Comment

PREVIOUS NEXT
Code Example
Shell :: merge large amount of fastq files into a single one 
Shell :: gitlab local runner run all jobs 
Shell :: use lines from file for bash command 
Shell :: Git global setupCreate a new repository 
Shell :: filebeat config folder location in linux 
Shell :: wsl networking 
Shell :: ring get environment variables 
Shell :: gitlab windows containers build pipeline 
Shell :: capitalize first letter in bash 
Shell :: find inodes usage 
Shell :: cmd.exe /s /k pushd "%V" run as admin 
Shell :: grep not like 
Shell :: not found the requested url was not found on this server. apache/2.4.41 (ubuntu) server 
Shell :: add group without logout 
Shell :: install jupyter notebook pypi 
Shell :: grep belirli bir dosyada arama yapmak 
Shell :: how to chck if i have bluetooth in lunux machine 
Shell :: command line linux delete all the line 
Shell :: Add Git Branch Name to Terminal Prompt (zsh) 
Shell :: how to define a command bash 
Shell :: decodificador h.264 necessario para reproduzir ubuntu 20 
Shell :: comand for insalling playonlinux 
Shell :: gnome terminal keep open 
Shell :: awk last match 
Shell :: autocompletion not working in root on kali 
Shell :: bash view specific columns from vcf file 
Shell :: how to add program to command line linux 
Shell :: open gas less example 
Shell :: install hnswlib 
Shell :: command line remove Unrecognized character xC3; 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =