plink.exe sh:ifconfig:not found

时间:2016-01-12 19:13:35

标签: bash ssh putty plink

我正在尝试通过plink.exe轻松编写代码

plink.exe -ssh tc@172.16.2.28 -pw "password" "ifconfig"

并且消息说:

sh: ifconfig: not found

或尝试

plink.exe -ssh tc@172.16.2.28 -pw "password" "dmidecode -q"

同样的事情sh: dmidecode: not found

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

马克,谢谢你的想法。是的,我也想过这个想法直接捕捉命令,

我的操作系统是TinyCore

首先我输入了sudo -u myuser ifconfig

消息为Sorry, user tc is not allowed to execute '/sbin/ifconfig' as tc on box.

我编辑脚本后

plink.exe -ssh tc@172.16.2.28 -pw "password" "/sbin/fconfig"

最后它有效。