06 Dec'11
Connect to VPS from clean machine
- download putty
- generate ssh key pairs on the client
- download winSCP
- upload public ssh key to the server
- open putty key with puttygen
- save it to proprietary format
Remember to use echo correctly:
echo "something" > file
means that everything that’s in “file” will be deleted, and “something” will be written to it (which means that “something” will be right at the beginning of “file”.
Code:
echo "something" >> file
means that “something” will be appended to “file”, so nothing will be deleted from “file”, and “something will be at the end of “file”.
Category: windows