Lesson 4

Date: 2/12/2009
Start-up and Run Levels. Scheduled jobs (at, cron)
Linux for Engineering and IT Applications


Init is the parent of all processes



unisys18:~$ pstree
In console mode (no desktop manager running)

init-+-atd
     |-cron
     |-dhclient3
     |-5*[getty]
     |-inetd
     |-klogd
     |-login---bash---pstree 
     |-portmap
     |-rpc.statd
     |-sshd
     |-syslogd
     `-udevd

unisys18:~$ pstree -p -l
shows the process tree with their PID in the long (non-truncated) format. /usr/bin/pstree comes with package psmisc.


Take me to the Course Website