PDA

View Full Version : svcscan


unkn0wn
10th April 2006, 14:53
initttab contains an svscanboot line. I assume that svscan is already running.
# ps -aux | grep svscan
Warning: bad syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html
root 9234 0.0 0.1 1536 456 pts/3 R+ 13:46 0:00 grep svscan

i kill only process of svcscan but he is still there :)
i mean when i want to reinstall it.

falko
10th April 2006, 18:36
initttab contains an svscanboot line. I assume that svscan is already running.
# ps -aux | grep svscan
Warning: bad syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html

Use ps aux | grep svscan instead.
root 9234 0.0 0.1 1536 456 pts/3 R+ 13:46 0:00 grep svscan

This is not the svscan process itself, it is the grep process that is looking for svscan. If svscan was still running, then there would be additional lines.
If you don't want to see that grep line, use
ps aux | grep svscan | grep -v grep

unkn0wn
11th April 2006, 09:34
i know that :)
i know what grep mean and hot is listed in ps.

i wanna shot that svscan is not running but when i want to #make svscan again ...there is error message. i menaged that i delete entry in etc/inittab that spawning process and reboot machine :)

tnx