View Single Post
Old 08-18-2004, 07:22 PM   #7 (permalink)
Fallon
Junkie
 
Location: RI
Quote:
Originally Posted by rukkyg
Code:
$ ls -l /sbin/pidof
lrwxrwxrwx    1 root     root            8 May  6  2003 /sbin/pidof -> killall5
pidof links to killall5 which is from the sysvinit package (http://freshmeat.net/projects/sysvinit).

if you already have killall5 (ls /sbin/killall5) you can just link it with

Code:
# ln -s /sbin/killall5 /sbin/pidof
Dude, I love you...you just made my life so much easier.
Thank you a bunch and thank you to everyone else who offered other solutions.
Fallon is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43