Linux remote login tool: Putty simple tutorial

  

First, Putty introduction

Putty is a remote login tool, it can be very convenient to log in to the Linux server for various operations (command line mode ). Putty is completely free, and does not require installation (double-click to run), supports a variety of connection types (Telnet, SSH, Rlogin ...), easy to use, it is a very recommended tool.

Second, the download of the Putty toolkit

The official website of putty is www.putty.org. You can download putty for free by going to the official website. You can download putty separately or download the putty toolkit. The toolkit contains many tools for use. (Baidu search download putty)


Third, the use of putty

Double-click to run putty, enter the IP address of the target host in Host Name (or IP address), Click Open to connect.


Enter the username and password on the command line to log in to the system and perform various operations.


If you think the default font is not good, you can also make various settings for the font. (Window->Appearance->Font settings)



IV. Use of pscp

Putty can remotely log in to the host for operation. Pscp can transfer files to a remote host, and it is very simple to use.

PSCP does not want to run directly with PUTTY, but through a command prompt. Enter PSCP.EXE to see the specific usage of PSCP.


Transfer files to a Linux host, for example: PSCP.EXE d:\\hello.txt [email protected]:Downloads, enter the password to transfer hello.txt to Linux User's home directory under Downloads folder

Standard format PSCP.EXE Transfer file directory User name@Host address: Accept file directory


Of course, you can also download from remote host File to the machine for example: PSCP.EXE [email protected]: /etc/inittab d:\\

Standard format PSCP.EXE username@host address: transfer file directory native file directory

Common Options

  • -q: Quiet mode, no information is displayed during transmission
  • -r: Transfer directory
  • -P port: Specify SSH port, default is 22
  • -l user: Specify which user logs in to the remote host for transmission, which can be written with the host address, such as [email protected]
  • -pw passw: Specify the user password at login
  • -C: Allow compression


  • Copyright © Windows knowledge All Rights Reserved