• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Debian startup services

d4mo

Senior member
Hey guys. I'm a Gentoo guy, but for this project I'm using Debian for certain reasons. I'm only using command line so no GUI or anything. My question is does debian have a command to view and change commands that run at the startup? Like gentoo has rc-status and rc-update.

Also how do you list installed apps? Is it with apt-cache?
 
ls /etc/rc?.d/S* (replace the ? with the runlevel you're using)

man dpkg - There's a way to list installed packages in there somewhere. I forget it offhand though.
 
There's update-rc.d but I think most people just manage the symlinks themselves.

'dpkg -l | grep ^ii' will list all installed packages. Although I usually just stick to aptitude.
 
In Debian all your scripts are stored in /etc/init.d/ and then each run level is /etc/rc0.d/, /etc/rc3.d and similar.

I usually just manage symbolic links manually.
 
Back
Top