putty下载linux文件到本地windows

  1. psftp -l root -pw password -P port host-ip
  2. -l 用户名  -pw 密码
  3. psftp> help
    ! run a local command
    bye finish your SFTP session
    cd change your remote working directory
    chmod change file permissions and modes
    close finish your SFTP session but do not quit PSFTP
    del delete files on the remote server
    dir list remote files
    exit finish your SFTP session
    get download a file from the server to your local machine
    help give help
    lcd change local working directory
    lpwd print local working directory
    ls list remote files
    mget download multiple files at once
    mkdir create directories on the remote server
    mput upload multiple files at once
    mv move or rename file(s) on the remote server
    open connect to a host
    put upload a file from your local machine to the server
    pwd print your remote working directory
    quit finish your SFTP session
    reget continue downloading files
    ren move or rename file(s) on the remote server
    reput continue uploading files
    rm delete files on the remote server
    rmdir remove directories on the remote server

将远程当前工作目录文件sourcefile.txt下载到本地当前工作目录中:

  1. psfp> get filename

将本地当前工作目录文件sourcefile.txt上传到远程当前工作目录中:

  1. psftp> put  filename
时间: 2024-10-12 03:13:01

putty下载linux文件到本地windows的相关文章

下载linux文件到本地

使用SecureCRT访问linux系统 使用命令:sz + 文件名 下载下来的文件在哪里呢?可以在SecureCRT上进行设置. 选项-->会话选项--> 点击X/Y/zmodem -->设置文件上传的目录和下载的目录即可知道上传和下载的文件在哪里了.

爪哇国新游记之二十八----从url指定的地址下载一个文件到本地

package download; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.net.URL; import java.net.URLConnection; import java.util.zip.GZIPInputStream; /** * 从url指定的地址下载一个文件到本地 * 2014

通过pscp从linux服务器下载文件到本地windows操作系统记载

从linux 服务器下载数据到本地windows操作系统 1) 下载 putty.exe 完整安装包. 2) 将pscp.exe程序 放在C:/windows/system32文件下(或者配置pscp.e xe的系统变量). 3)   打开windows cmd.exe命令行窗口 输入pscp命令看是否能够运行. 4)   在命令行运行pscp [email protected]:/usr/tideway/java/integrations/mappings/extended-rdb/Oracl

XSHELL下直接下载文件到本地(Windows)

xshell很好用,然后有时候想在windows和linux上传或下载某个文件,其实有个很简单的方法就是rz,sz 首先你的Ubuntu需要安装rz.sz(如果没有安装请执行以下命令,安装完的请跳过.其它版本linux请自行安装相应软件) yum  install lrzsz 安装完毕即可使用 rz,sz是便是Linux/Unix同Windows进行ZModem文件传输的命令行工具 windows端需要支持ZModem的telnet/ssh客户端(xshell支持,好像putty不支持),Sec

Linux命令行上传本地文件到服务器 、 下载服务器文件到本地

sh使用命令: scp 将本地文件上传至服务器 第一个是本地文件的路径/文件名, 例如 ./index.tar.gz  . index.html . bg.png 等 第二个是要上传到的服务器的位置  例如  root@39.106.144.90:/var/www scp path/filename userName@sseverName:path 如果是要下载服务器的文件到本地 则调换两个位置就可以 scp userName@sseverName:path path/filename 如果操作

下载服务器文件到本地

1,使用CRT连接服务器 2,连接SFTP 3,将要下载的文件复制到当前用户的  "家" 目录下 4,使用get下载文件

阿里云RDS-Mysql物理备份数据库文件,在本地windows下数据库恢复过程

记录一次阿里云RDS-Mysql备份文件,本地windows数据库恢复过程 - hbh112233abc的博客 - CSDN博客 https://blog.csdn.net/hbh112233abc/article/details/80941263 --------------------- 恢复后,账号是root,密码是root 其它账号.密码与RDS上的一样 原文地址:https://www.cnblogs.com/pangchunyu/p/11994506.html

转 使用putty从linux主机上面往windows主机下面拷贝文件

更新一下,把putty的包解压以后,想要在dos窗口中直接使用,必须把putty解压的文件的路径添加到环境变量中,这样使用起来就会非常简单了. 郁闷了好久,终于搞定了putty的上传下载文件命令pscp的使用.关于putty网络上有很多整体的介绍,但是本篇文章只是针对刚接触putty的初学者,如何从linux主机上面上传下载文件. 整体深入的介绍,请看这篇文章:http://blog.csdn.net/allen_zhao_2012/article/details/7818315 其实对于平常使

Java利用 ganymed-ssh2-build.jar来上传文件到linux以及下载linux文件以及执行linux shell命令

package api; import java.io.BufferedReader;import java.io.InputStreamReader;import java.io.IOException;import java.io.InputStream;import org.apache.log4j.*;import ch.ethz.ssh2.Connection;import ch.ethz.ssh2.SCPClient;import ch.ethz.ssh2.Session;impor