openwrt下ngrok命令缺少libstdc++库的问题 今天从网上下载一个NGROK 对于Openwrt的应用程序,发现并没有跑起来,错误如下: ./ngrokc9331: can't load library 'libstdc++.so.6' 上面写的很清楚了
openwrt下ngrok命令缺少libstdc++库的问题
今天从网上下载一个NGROK 对于Openwrt的应用程序,发现并没有跑起来,错误如下:
./ngrokc9331: can't load library 'libstdc++.so.6'
上面写的很清楚了,就是缺少libstdc++的标准库,那么就直接去安装个libstdcpp就Ok了。
具体操作如下:
root@LeeKwenAP:~/ngrok# lsngrokc9331root@LeeKwenAP:~/ngrok# ./ngrokc9331./ngrokc9331: can't load library 'libstdc++.so.6'root@LeeKwenAP:~/ngrok# opkg install http://downloads.openwrt.org/attitude_adjustment/12.09/ar71xx/generic/packages/libstdcpp_4.6-linaro-1_ar71xx.ipkDownloading http://downloads.openwrt.org/attitude_adjustment/12.09/ar71xx/generic/packages/libstdcpp_4.6-linaro-1_ar71xx.ipk.Installing libstdcpp (4.6-linaro-1) to root...Configuring libstdcpp.重新运行这个ngrok命令就可以了。
root@LeeKwenAP:~/ngrok# ./ngrokc9331ngrokc v1.12-(2016/1/15)use ./ngrokc9331 -SER[Shost:ngrokd.ngrok.com,Sport:443,Atoken:xxxxxxx] -AddTun[Type:tcp,Lhost:127.0.0.1,Lport:80,Rport:50199]具体的ngrok怎么使用,可以自己百度。