Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
# Get to the correct directory (create it if needed)
cd
cd .ssh
# Just hit return for all prompts on the following command
ssh-keygen -t rsa
# Append our public key to the other machine's authorized_keys file
# We WILL be prompted for a password on this command
cat id_rsa.pub | ssh informix@unixbox "cat - >> .ssh/authorized_keys"
# From this point on, we should be able to scp files to and from the informix account on unixbox without a password
scp [b]-2[/b] informix@unixbox:/dbexport.out .