我有一个脚本,目前ping一些服务器。如果服务器可ping通,则使用scp将一些文件写入该服务器。我想添加一个部分,这样如果服务器无法ping通,脚本就会抛出一条错误消息。 #!/bin/bash
ssh-copy-id localhost
#Getting list of server
server_list=${cobbler system list}
for server in ${server_list} ; do
dns_names=${cobbler system report --name${server} | grep -i "dns name" | a
我希望定期将文件从Linux机器复制到Windows机器(这两台机器都是远程访问的)。
假设我有以下内容。Linux机器名为host1,用户名为user1,Windows机器名为host2,用户名为user2。windows机器还具有登录密码。
我想将文件从/home/admin of host1复制到D:\admin of host2。
有人能帮我创建一个shell脚本来执行这个任务吗?
当我们试图将文件从windows服务器复制到linux时,出现以下错误:
command: scp C:\Users\arya\Videos\aaa userabc@10.100.10.10:/local/
scp command getting failed : Unable to negotiate with 10.100.10.10 port 55: no matching host key type found. Their offer: ssh-rsa,ssh-dss
有什么方法可以从windows复制到linux服务器并减少密码?