Created
August 26, 2015 00:34
-
-
Save stevenswafford/f058e946e29305726310 to your computer and use it in GitHub Desktop.
SSH Commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###SSH into a remote machine### | |
#domain name | |
ssh [email protected] | |
#ip address | |
ssh [email protected] | |
__exit:__ `exit` | |
###Install### | |
#update apt-get | |
sudo apt-get update | |
#install monodevelop | |
sudo apt-get install monodevelop | |
###Copy files### | |
#copy all of the files in current directory to the /home/ozzy/music directory | |
rsync -av . [email protected]:~/music | |
#delete a file and run rsync again, and it only copies the one mising file | |
###Generate an SSH keypair for passwordless SSH### | |
#local computer | |
cd ~/.ssh | |
#if the .ssh directory does not exist then create it | |
ssh-keygen -C "[email protected]" | |
#hit enter a few times to generate key | |
#copy the file contents to the clipboard | |
cat id_rsa.pub | pbcopy | |
#log into your machine | |
ssh [email protected] | |
#make the .ssh directory and get in it | |
mkdir .ssh | |
cd .ssh | |
#open authorized_keys in nano and paste the contents in | |
nano authorized_keys | |
#paste contents in and save by hitting ctrl+x | |
#exit and you can now ssh without a password! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lorrainegabriellevicio.html