我想控制我的系统使用的每个单独的进程。(并逐一了解它们的作用)我使用openbox,但我对如何控制启动程序和服务感到困惑。
我想有我需要的一切(最低限度的系统)在一个地方。执行的到底是什么?按什么顺序?
"/etc/xdg/autostart/"
"/usr/lib/x86_64-linux-gnu/openbox-autostart"
".config/openbox/autostart.sh"
"/etc/init.d/"
"/etc/rc3.d/"
... ???发布于 2015-06-13 08:32:20
您可以使用下面提到的命令进行检查。
ps - list the processes running on the system
kill - send a signal to one or more processes (usually to "kill" a process)
jobs - an alternate way of listing your own processes
bg - put a process in the background
fg - put a process in the forgroundhttps://stackoverflow.com/questions/30813912
复制相似问题