我正在尝试通过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
有什么想法吗?
答案 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"
最后它有效。