1. Where would I go to find what a specific daemon's numeric error code
meant?
2. What command do I use to list all mounted filesystems and
numerically sort them my percentage space used?
3. What command would I use to find every instance of a process called
fork_bomb and sort the display by process-owner's username?
Thanks in advance for your assistance.
> 2. What command do I use to list all mounted filesystems and
> numerically sort them my percentage space used?
df | sort -r +4
> 3. What command would I use to find every instance of a process called
> fork_bomb and sort the display by process-owner's username?
ps aux | grep fork_bomb | sort
Phil.