Software installation and file transfer on Linux

1. Software installation on Linux

  • There are several common ways to introduce software installation on Linux
  1. Binary distribution package

The software has been compiled and packaged for specific platforms, as long as it is decompressed and the configuration can be modified

  1. RPM package

The software has been packaged and released in accordance with the redhat package management tool specification RPM. You need to obtain the corresponding software RPM release package, and then use the RPM command to install

  1. Yum online installation

The software has been packaged with the RPM specification, but it has been published on some servers on the network. You can use yum to install the rpm software on the server online, and it will automatically solve the library dependency problem during the software installation

  1. Source code compilation and installation

The software is released in the form of a source code project. After obtaining the source code project, compile and deploy it with the corresponding development tools.

2. SSH service file transfer

  • Introduction to upload and download tools
  1. FileZilla

Insert picture description here

  1. lrzsz

We can install yum install lrzsz using yum installation

Note: there must be a network

You can set the upload and download directory in crt

]
Upload:rz
Insert picture description here

download:sz 文件资源

Insert picture description here

  1. sftp (encrypted file transfer protocol)

    • Enter alt + p in Secure CRT to open sftp;

    • Use (put path resource) to upload windows resource to linux
      Insert picture description here

    • Use (get resource) to download linux resource to windows
      Insert picture description here

Published 23 original articles · praised 4 · visits 2178

Guess you like

Origin blog.csdn.net/reallllbj/article/details/105642005