Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Some Basic System-Admin Questions...

0 views
Skip to first unread message

Davin Shearer

unread,
Mar 15, 2000, 3:00:00 AM3/15/00
to
I need to know the answer to these questions:

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.

Phil

unread,
Mar 31, 2000, 3:00:00 AM3/31/00
to

Davin Shearer <nob...@nowhere.gov> wrote in message
news:MPG.1339c040...@news.mindspring.com...

> I need to know the answer to these questions:
>
> 1. Where would I go to find what a specific daemon's numeric error code
> meant?
I'm not sure if there's a definitive place to go... daemons homepage ?
documentation ?
Maybe someone else will follow up with a better answer.

> 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.

0 new messages