You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
===进行全国PING测试结束===
警告:SQL语句有误 错误代码:1064; 错误信息:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Hosted by Cox - Wichita (Wichita, KS) [43.14 km]: 45.922 ms' Testing download sp' at line 1
python修改成python3解决了CentOS8不能使用
#带宽测试
bdtest()
{
if [ "$os" == 'centos' ]; then
yum -y install python3
else
apt-get update
apt-get -y install python3
fi
echo "===开始测试带宽===" | tee -a $logfilename
wget --no-check-certificate https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py 1>/dev/null 2>&1
python3 speedtest_cli.py --share | tee -a $logfilename
echo -e "===带宽测试结束==\n\n" | tee -a $logfilename
rm -rf speedtest_cli.py
}
The text was updated successfully, but these errors were encountered:
===进行全国PING测试结束===
警告:SQL语句有误
错误代码:1064;
错误信息:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Hosted by Cox - Wichita (Wichita, KS) [43.14 km]: 45.922 ms' Testing download sp' at line 1
python修改成python3解决了CentOS8不能使用
#带宽测试
bdtest()
{
if [ "$os" == 'centos' ]; then
yum -y install python3
else
apt-get update
apt-get -y install python3
fi
echo "===开始测试带宽===" | tee -a $logfilename
wget --no-check-certificate https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py 1>/dev/null 2>&1
python3 speedtest_cli.py --share | tee -a $logfilename
echo -e "===带宽测试结束==\n\n" | tee -a $logfilename
rm -rf speedtest_cli.py
}
The text was updated successfully, but these errors were encountered: