在centos上关闭firstboot
Turn off firstboot on centos
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
关于如何终止进程的想法?
您对这个输出的解释不正确。
[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'
来避免这种混淆。
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
关于如何终止进程的想法?
您对这个输出的解释不正确。
[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'
来避免这种混淆。