繁体   English   中英

在python脚本中使用sudo

[英]Using sudo in python script

我正在研究一个可对LAN设备执行ping操作并在mysql数据库中写入ping所占用的avg_time的项目。

# Python script to update contents of MySQL database

import MySQLdb
import subprocess
import re

#Connecting to MySQL database
db = MySQLdb.connect("localhost","tempLocal","thunderbolt","dbavgspeed")
#initializing cursor
cur = db.cursor()

error = "Request"

while 1:
    # 0.1 is the interval between pings and 4 is the number of times ping operation is performed and -t 1 sets the timeout to 1 sec 
    command1 = ['ping','-n','-i','0.1','-t','1','-c','400','192.168.1.1']
    p1 = subprocess.Popen(command1,stdout=subprocess.PIPE)
    #text is the string which stores the output from the terminal
    text1 = p1.stdout.read()


    if error in text1:
        status1 = 0
        cur.execute("""UPDATE tbavgspeed SET status = %s WHERE id = %s""",(status1,1))
        db.commit()
    else:
        status1 = 1

        find11 = re.search("stddev(.+?)ms", text1)
        allValues1 = find11.group(1)
        find12 = re.search("/(.+?)/", allValues1)
        avgTime1 = find12.group(1)

        cur.execute("""UPDATE tbavgspeed SET avg_time = %s, status = %s WHERE id = %s""",(avgTime1,status1,1))
        db.commit()

#terminates the connection
db.close()
  • 该脚本可以通过简单的ping命令正常运行,但是如何通过需要sudo的python脚本使用Flooding ping(ping -f)
  • 是否有更好的方法来计算路由器的当前数据传输速率

您可以使用sudo运行Python脚本。 例如:

import os
os.system('ping -f google.com')

没有sudo

$ python
>>> import os
>>> os.system('ping -f google.com')
ping: -f flag: Operation not permitted
19712

使用sudo

$ sudo python
>>> import os
>>> os.system('ping -f google.com')
PING google.com (172.217.6.78): 56 data bytes
.^C
--- google.com ping statistics ---
409 packets transmitted, 408 packets received, 0.2% packet loss
round-trip min/avg/max/stddev = 3.334/3.645/9.459/0.362 ms
0

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM