我有一台Windows 7笔记本电脑(不是Windows Server,只是一台普通笔记本电脑)。 Unix计算机正在尝试将文件拖放到该Windows计算机。如果我不想在Windows上设置FTP服务器,那么Unix用户是否仍可以使用scp删除文件?
答案 0 :(得分:1)
这可能不是您想要的,但是可以相对轻松地实现相同的目标。使用powercat,您可以在Windows框上设置一个侦听器,并从UNIX机器上删除文件。
Windows机器(侦听器):
powercat -l -p 8000 -of C:\file.txt
unix框(使用本机nc):
nc -nv ip_addr_of_windows_box 8000 < file.txt
另外,您也可以在Unix框中运行服务器,并通过http从Windows计算机中提取文件,尽管这不是最安全的方法,因为您将公开文件系统。
unix框:
python -m SimpleHTTPServer
windows(powershell):
Invoke-WebRequest https://ip_of_unix_box:8000/file.txt -OutFile c:\temp\file.txt