winscp

winscp连接虚拟机的Ubuntu问题:“服务器拒绝了SFTP连接,但它监听FTP连接。 想要用FTP协议来代替SFTP吗?最好是用加密的”

匿名 (未验证) 提交于 2019-12-03 00:18:01
转载链接: https://blog.csdn.net/shenwb110/article/details/70228984/ 在用Winscp 连接Ubuntu时出现: 原因是Ubuntu上没有安装sshd。 1,sudo apt-get install yum 安装 ,中间有输入:Y 2,sudo apt-get install openssh-server,中间有输入:Y 3,sudo ps -e |grep ssh 回车可以看到sshd 说明ssh服务已经启动。 如果没有启动可输入:sudo service ssh start 启动。 文章来源: winscp连接虚拟机的Ubuntu问题:“服务器拒绝了SFTP连接,但它监听FTP连接。 想要用FTP协议来代替SFTP吗?最好是用加密的”

windows和linux文件互相复制粘贴软件

匿名 (未验证) 提交于 2019-12-02 21:59:42
windows和linux文件互相复制粘贴软件用WinSCP! WinSCP是一个支持SSH的SCP文件传输软件。操作简单,只需要连接相应的服务器就可以进行下载和传输文件。重要的是WinSCP中文版软件还有着很多特色的功能,有着内置的文本编辑器,可以支持文件的复制、移动、更名文件等操作,为你带来高效便捷的使用体验。 直接运行软件---登录linux ssh账户密码----之后即可两边互相ctrl C 和ctrl V了! 来源:51CTO 作者: 老肖的博客 链接:https://blog.51cto.com/8189171/2446006

winSCP上传文件到服务器失败,提示permission denied

好久不见. 提交于 2019-12-02 12:00:07
最近想试试centos,碰到了一些小问题,特此记录 使用winscp把文件发送到虚拟机上时,出现了下边这个错误。 原因是权限不足,因为我们连接到服务器是以普通用户连接的所以会权限不足,解决办法是以root用户连接服务器 那就想办法用root用户连接。 1、查看sftp服务在你服务器的路径 我是使用的SecureCRT连接的虚拟机 使用命令:find / -name sftp-server -print,记得使用root用户 输出结果如图: /usr/libexec/openssh/sftp-server 2、在设置用户的界面点击编辑,高级选型就可以操作 3.在SFTP中更改“SFTP服务器”,sudo 后跟上一步显示的路径 来源: https://blog.csdn.net/super828/article/details/102749716

FileZilla,WinSCP,VNC,putty,mstsc区别

妖精的绣舞 提交于 2019-12-02 07:47:18
FileZilla是ftp用的,WinSCP是连接Windows和Linux的,VNC是Windows以图形界面访问Linux或者mac的,putty是Windows连接Linux命令行的,mstsc(Microsoft Terminal Service Client)是Windows连接Windows的远程桌面。 Filezilla分为client和server。其中FileZilla Server是Windows平台下一个小巧的第三方FTP服务器软件,系统资源也占用非常小,可以让你快速简单的建立自己的FTP服务器。 Note:client和server不是绑定使用的,client可以连接任何一个ftp服务器,不管用什么创建的server。 来源: oschina 链接: https://my.oschina.net/u/3069003/blog/2052498

使用WinSCP远程连接虚拟机

£可爱£侵袭症+ 提交于 2019-12-01 19:34:33
Linux环境搭建 | 使用WinSCP远程连接虚拟机 在上一节中,我们介绍了如何通过Notepad++的NppFTP插件实现远程连接虚拟机,在这一节里,将介绍如何利用WinSCP软件远程连接虚拟机。 1. 安装WinSCP软件 这也是一个免费的软件,到处都有得下载,良许就不赘述了。 2. 新建站点 打开软件,它就会自动跳到登录界面。在登录界面可创建一个新的站点,如下图示: 3. 安装SSH 连接过程中可能会遇到如下提示,则说明没有安装sshd,只需执行如下命令即可安装: sudo apt-get install ssh 4. 连接到虚拟机 之后点击确定,即可连接到虚拟机了,界面如下图示。左边代表Windows电脑文件,右边代表Linux电脑文件。 5. 基本操作介绍 5.1 文件的复制: 只需直接拖动即可,比如想从Linux电脑复制文件到Windows电脑,则直接从右边窗口新文件拖到左边窗口即可,反之亦然。 5.2 编辑Linux电脑文件: 直接右键打开选择 「编辑」 ,即可使用WinSCP自带的编辑器编辑。不过那个编辑器不太好用,也可以自己指定编辑器。只要新鼠标悬停在 「编辑」 选项上1秒,即可自定义编辑器。 其实常用的功能也就这两个,这个软件也很好上手,自己去挖掘更多用法哦。 转载至: https://zhuanlan.zhihu.com/p/56374683 来源:

Showing WinSCP .NET assembly transfer progress on WinForm's progress bar

非 Y 不嫁゛ 提交于 2019-12-01 13:51:23
Have some main form on which I am calling file downloading from FTP. When this operation is raised i want to see new form as ShowDialog and progress bar on it to be shown meantime, then show the progress and close new form and back to main form. My code is working however, when it will process is started my main form freezes and after while new form is appearing and then closing. What I would like to correct is to show this new form to be showed straightaway after process is executed. Can you take a look and tell me whats wrong? This is out of my main form the download process called: Dim pro

Batch File > Javascript > WinSCP > Check if file exists

醉酒当歌 提交于 2019-12-01 13:41:38
I have a batch file that will launch a .js file which, via WinSCP, checks if a file exists and returns to the batch file if it does or not. The problem IS: It always returns not found, and I cannot figure out why. I am unsure how to use a wildcard in this scenario. The batch file looks like this: cscript /nologo file.js if errorlevel 1 goto notfound exit :notfound (another script to copy a file over) Only one file can exist on the server at once. So every ten min, this batch file will run, check if there is a file, if not, copy one over. The file.js: // Configuration // Remote file search for

Showing WinSCP .NET assembly transfer progress on WinForm's progress bar

戏子无情 提交于 2019-12-01 12:41:38
问题 Have some main form on which I am calling file downloading from FTP. When this operation is raised i want to see new form as ShowDialog and progress bar on it to be shown meantime, then show the progress and close new form and back to main form. My code is working however, when it will process is started my main form freezes and after while new form is appearing and then closing. What I would like to correct is to show this new form to be showed straightaway after process is executed. Can you

Error quoting spaces to locate destination filepath WinSCP script issue

雨燕双飞 提交于 2019-12-01 12:27:34
I've written a basic .bat file script that automates downloading a group of files via WinSCP. I have used this code for performing a similar process which is working as intended, however the stumbling block appears to be the destination filepath. I have tried using C:\Users\"John Smith"\Dropbox\joebloggs\Data\"System Data"\"Raw Feeds"\Stock\May\ and other variations with the whole filepath within inverted commas also. If anyone could advise the correct syntax for entering this filepath it would be appreciated. Code is as follows:- @echo off "C:\Program Files (x86)\WinSCP\WinSCP.com" ^ /log="C: