เห็นได้ชัดว่านี่เป็นข้อผิดพลาดที่รู้จักกันใน Empathy ดังนั้นฉันจึงตัดสินใจเปิดใช้งาน Empathy จากสคริปต์ที่ตรวจสอบว่าเครือข่ายนั้นใช้งานได้หรือไม่ (เชื่อมต่อกับhttp://www.google.comการเต้นของหัวใจที่แท้จริงของอินเทอร์เน็ต :) หากเครือข่ายไม่ทำงาน มันจะนอนเป็นเวลา 5 วินาทีและลองอีกครั้งจนกว่าจะลอง 30 ครั้ง
นี่คือสคริปต์ (ชื่อwaitfornet.py )
#!/usr/bin/python
from urllib2 import urlopen, URLError
from subprocess import Popen
from time import sleep
from sys import argv
MAX_TRIES = 30
DELAY = 5
if len (argv) < 2:
print ('Check for network connectivity and run a command once the net is up')
print ('Tries up to %d times waiting %d seconds between each try' % (MAX_TRIES, DELAY))
print ('\nUSAGE: python waitfornet.py <command to run>')
else:
while True:
MAX_TRIES -= 1
if MAX_TRIES < 0:
raise ValueError ('Reached the max iteration count and the net is still down')
try:
data = urlopen('http://www.google.com')
except URLError:
# if there's a problem connecting to google, that must mean
# that the net is still down, so sleep 5 seconds and try again
print ('Internet is down... retrying...')
sleep (DELAY)
continue
# if you got here it means that the urlopen succeded
pid = Popen([argv[1], ' '.join(argv[1:])]).pid
break
และนี่คือวิธีที่ฉันเปิดมันจากเมนู "แอปพลิเคชันเริ่มต้น":
~/scripts/waitfornet.py empathy