gpt4 book ai didi

Python:在 hostapd 之后运行服务

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:42:24 24 4
gpt4 key购买 nike

我已经在一个项目上工作了几个星期了,我遇到了一些我想不通的事情(可能非常简单)!

import os
os.system("service hostapd start && hostapd /etc/hostapd/hostapd.conf")
os.system("service someservicethatIuse start")

当我启动 hostapd 时,脚本会暂停,因为它启用了一个访问点。我尝试使用 xfce4-terminal --tab -e "hostapd/etc/hostapd/hostapd.conf"--tab -e "service someservicethatIuser start" 运行它,但它似乎不起作用: -/

(语言:Python 2.6)

最佳答案

我不知道 hostapd,但通常运行 service foo start 来启动服务就足够了,而且它不会阻塞。

无论如何,您可以使用 sh & 运算符并行运行 shell 进程:

import os
os.system("service hostapd start && hostapd /etc/hostapd/hostapd.conf &")
os.system("service someservicethatIuse start")

关于Python:在 hostapd 之后运行服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41269294/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com