Firstboot似乎正在基于此运行:
[root@master ~]# ps ax |grep firstboot
27891 pts/0 R+ 0:00 grep firstboot
我似乎无法杀死它
[root@master ~]# killall firstboot
firstboot: no process killed
当我检查它是否正在运行时,pid似乎已经改变了!
[root@master ~]# ps ax |grep firstboot
28233 pts/0 S+ 0:00 grep firstboot
使用chkconfig不能正常工作
[root@master ~]# chkconfig firstboot off
error reading information on service firstboot: No such file or directory
关于如何杀死这个过程的想法?
答案 0 :(得分:1)
您已错误地解释了此输出。
[root@master ~]# ps ax |grep firstboot
27891 pts/0 R+ 0:00 grep firstboot
这并没有告诉你firstboot正在运行。注意那里的命令grep firstboot
。这告诉您grep
正在运行。
尝试pgrep firstboot
或ps ax | grep '[f]irstboot'
以避免这种混淆。