« Earlier 4 items total Later »

On this page: 

Killing an outta whack webmin

ps ax | grep webmin | kill -9 `awk '{print $1}'`

Using pw to add a group and user in FreeBSD

Using "textdrive" as an example

pw groupadd textdrive
pw useradd textdrive -m -c "Main Textdrive account" -d /home/textdrive -s /bin/tcsh -G textdrive -k /usr/share/skel/


Then set the password:

passwd textdrive

View processes, grep out by user and then kill all their PIDs

ps axu | grep user | kill -9 `awk ‘{print $2}’`

Sort a list of processes by users into more

ps axu | sort -rn | more

« Earlier 4 items total Later »