Linux Autostart进程和服务

Linux Autostart进程和服务,linux,shell,Linux,Shell,我想控制我的系统使用的每一个进程。(一个接一个地学习他们做什么) 我使用openbox,但我对如何控制启动程序和服务感到困惑 我想在一个地方拥有我所需要的一切(最低系统)。 到底执行什么?按什么顺序 "/etc/xdg/autostart/" "/usr/lib/x86_64-linux-gnu/openbox-autostart" ".config/openbox/autostart.sh" "/etc/init.d/" "/etc/rc3.d/" ... ??? 您可以使用下面提到的命令进

我想控制我的系统使用的每一个进程。(一个接一个地学习他们做什么) 我使用openbox,但我对如何控制启动程序和服务感到困惑

我想在一个地方拥有我所需要的一切(最低系统)。 到底执行什么?按什么顺序

"/etc/xdg/autostart/"
"/usr/lib/x86_64-linux-gnu/openbox-autostart"
".config/openbox/autostart.sh"
"/etc/init.d/"
"/etc/rc3.d/"
... ???

您可以使用下面提到的命令进行检查

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 forground