putty

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

Cygwin + OpenSSH FOR Windows的安装配置

醉酒当歌 提交于 2019-12-02 07:26:00
Cygwin是一款世界著名软件,它可将Linux下的自由软件移植到Windows系统上来应用,了解和掌握这个软件,将使您又多了许多有益的选择,并带您到一个更广阔的天空下翱翔,这对于您的学习和工作将起到确定无疑的推动作用。下面我用自己总结的一个例子,带大家进入这个世界。 在windows操作系统中,使用Cygwin + OpenSSH开源软件来作为远程连接的安全工具,是一个非常好的方法,得到许多网管人员的青睐。然而要想顺利安装配置好这套软件,对于初学者来说,是有一定难度的。为了使同道们少走弯路,特将本人摸索的经验陈列于此,以供需要者参考。建议在安装配置这套软件之前,最好要初步掌握一些Linux终端操作技能及其技术概念。 以下所述是在Windows XP系统中实践完成,其它Windows系统可参照此文实施。 一、安装Cygwin + OpenSSH 首先打开 http://Cygwin.com 网页,点击如下链接: Install or update now! 将会下载一个安装Cygwin的setup.exe文件,然后在欲安装Cygwin + OpenSSH软件的磁盘上创建Cygwin目录,在此我们假定为:C:\Cygwin,运行setup.exe后打开图一: 图一 图一主要提供关于Cygwin软件安装的一些信息,点击下一步 后打开图二: 图二 图二提供了三个选项: 第一选项

putty from a batch file and a script?

泄露秘密 提交于 2019-12-02 05:49:01
问题 I have a batch file that opens putty just fine. c:\putty.exe root@192.168.12.34 -pw boyhowdy. But to make this work for me I need to understand how to include a script of a command so it will run under the putty tool. Like mount –o remount,rw / . Or is this something I can do with a tool called pscp. I am a nube to these tools and really could use some guideance. I have a bunck of these scripts and would really like to automate them. Thankyou 回答1: If your goal is to execute shell commands

Putty - Delete files dynamically using C#

三世轮回 提交于 2019-12-02 05:16:59
I am working on a Windows app with C# as a programming langugage. Requirement is to login to putty dynamically delete old files from specific location I am currently using below code to login to putty, but how do i ran the delete command ?? string hostname = "hostname"; string login = "login"; string password = "password"; ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = @"C:\Putty\putty.exe"; startInfo.Arguments = string.Format("{0}@{1} -pw {2}", login, hostname, password); startInfo.Start(); I want to pass something like this rm myFile*.txt But before that I have to

SSH connection to Ubuntu open SSH-server requires login on (physical) server via password first [closed]

别等时光非礼了梦想. 提交于 2019-12-02 04:01:23
Heyho, I have a kind of weird problem with an ubuntu server that runs open ssh-server. Everything configuration wise is working except for one thing. I cannot connect via putty with my .ppk key to the server, right after it booted. I get a "server refused our key". Since the thing is currently running in Virtual Box I still have access over the direct login. So I login with my user and my password and instantly log out again. Now I can connect via putty and the .ook key. And I have no Idea why. Either I missed some explanation somewhere or I screwed up something somewhere with the configs. If

new comint mod in emacs for plink (putty): Symbol's function definition is void

自作多情 提交于 2019-12-02 03:12:30
问题 i want to use a new comint mode for plink(putty), i put the code in init.el, but if M-x run-plink, i got below error: let*: Symbol's function definition is void: comint-check-proc ;; path (defvar plink-file-path "C:/Programme/Putty/plink.exe" "Path to the program used by `run-plink'") ;; arguments (defvar plink-arguments '() "Commandline arguments to pass to `plink'") ;; prompt (defvar plink-prompt-regexp "^>\s" "Prompt for `run-plink'.") ;; Run-plink (defun run-plink () "Run an inferior

Got a minus one from a read call

丶灬走出姿态 提交于 2019-12-02 02:51:28
I connect to a database with read only access using SQL developer. It's a TNS connection. I use a tnsnames.ora, forwarding port script and SQL Developer. In the past, occasionally, when connecting, I get a error message Got a minus one from a read call. Vendor Code 0 If I do a reboot, it goes away. Another friend suggested changed the forwarding port which worked for him. I recently upgraded to a new computer and now it seems that I am getting the error message consistently. Reboot or changing forwarding port does not help at all. The port forwarding script contains something like this putty

putty from a batch file and a script?

£可爱£侵袭症+ 提交于 2019-12-02 01:18:10
I have a batch file that opens putty just fine. c:\putty.exe root@192.168.12.34 -pw boyhowdy. But to make this work for me I need to understand how to include a script of a command so it will run under the putty tool. Like mount –o remount,rw / . Or is this something I can do with a tool called pscp. I am a nube to these tools and really could use some guideance. I have a bunck of these scripts and would really like to automate them. Thankyou If your goal is to execute shell commands remotely through putty, you should probably look at plink (putty without the gui, in other words an ssh client

How can I export a (PKCS#8?) private key in Putty or Puttygen readable format?

江枫思渺然 提交于 2019-12-01 21:33:21
问题 I'm writing a tool to create new Amazon Web Services servers, using the AWS Java API. When you create a server, you have to specify which SSH keypair to use out of the public keys AWS has stored with your account. You can generate the keypair yourself and import the public key, or you can have AWS generate the keypair and you download the private key. I'm trying to generate the keypair myself, import the public key into AWS, start the new server using the newly registered keypair entry and

PHP script is killed without explanation

别说谁变了你拦得住时间么 提交于 2019-12-01 20:19:51
I'm starting my php script in the following way: bash cd 'path' php -f 'scriptname'.php There is no output while the php script is running. After a time, the php script responds with: Killed My idea is that it reached the memory_limit: ini_set('memory_limit', '40960M'); Increasing the memory limit seemed to solve the problem, but it only increased the edge. What exactly does that Killed phrase mean? Nanne Your process is killed. There could be a multitude of reasons, but it's easy to discard some of the more obvious. php limits: if you run into a php limit, you'll get an error in the logfile,