PuTTY: Change default SSH login directory [closed]
You can also change the directory within PuTTY itself: Configuration → Connection → SSH Fill in the “Remote command” field with the following: cd subdir/subdir ; /bin/bash
You can also change the directory within PuTTY itself: Configuration → Connection → SSH Fill in the “Remote command” field with the following: cd subdir/subdir ; /bin/bash
If you’re using vim (and who isn’t nowadays), you can enable incremental search with: :set incsearch Then just use the regular search command / and it will move the highlight as you add characters to the search string. I also like hlsearch as well since it highlights all found items (once the search command is … Read more
Recent “unreleased” versions of tmux do automatically recognize those xterm-style key sequences once you have your terminal sending them (no need to change your terminfo entry). The next release version (1.8?) should also have this support. With an appropriate build of tmux1, all you have to do is bind the keys in your tmux configuration: … Read more
Install PuttyTools apt-get install putty-tools Generate a pem file form the ppk puttygen server.ppk -O private-openssh -o server.pem The file server.pem file will be saved on same location
The settings you need are “Local echo” and “Line editing” under the “Terminal” category on the left. To get the characters to display on the screen as you enter them, set “Local echo” to “Force on”. To get the terminal to not send the command until you press Enter, set “Local line editing” to “Force … Read more
Did you try: pscp -P 22 c:\documents\foo.txt user@example.com:/tmp/foo
Login into your server using a shell program like putty. Type in the following command on the command line zcat DB_File_Name.sql.gz | mysql -u username -p Target_DB_Name where DB_File_Name.sql.gz = full path of the sql.gz file to be imported username = your mysql username Target_DB_Name = database name where you want to import the database … Read more