*nix newbie here - how is a process determined to be active vs not? Wouldn't this completely tank the machine?
killall terminates all processes with open files so that the mounted file systems will be unbusied and can be unmounted.
killall sends signal (see kill(1)) to the active processes. If no signal is specified, a default of 15 is used.
Try and guess where I got that info from.
*nix newbie here - how is a process determined to be active vs not? Wouldn't this completely tank the machine?