pkill 을 임베디드에서 구현하고 싶은데...

jinushun의 이미지

안녕하세요.

갑자기 궁금한게 생겨서요.

현재 장비를 만들어 테스트 중인데.. 프로세스를 pid 로 죽일려니 너무 번거로웟요.. -_-;;

같은프로세스가 여러개 돌다보니..

pkill 을 임베디드 장비에서 구현할 수 있나요? 있을거 같은데.

비지박스에는 없더군요.

고수분들의 가르침을 바랍니다.

수고하세요

beta의 이미지

1. killall(1) - kill processes by name

2. HHL 을 보면 pkill 이 있군요. 지원되는 플랫폼이라면 이걸 이 바이너리를 이용해 보시는것도..

3. ps | kill 의 옵션을 이용한다. busybox에서는 어떤지 모르겠음.

4. grep, awk, kill

5. busybox 의 ps 를 좀 고쳐셔 pid 를 구한다음 kill

6. script 를 이용한다. 아래는 kltp 에서 업어왔음.
철이 (2000년 11월 30일 오후 11:08)
전 좀 다른 방법을 씁니다. 일단은 ps로 프로세서를

확인해야 하기 때문에 귀챦죠.

그래서 저는 다음과 같은 스크립트를 만들어 놓고 씁니다.

[killproc script]

#!/bin/sh

usage="usage : killproc [process 1] ... "

if (($# == 0))
then
echo $usage
exit 1
fi

for name in $*
do
ps -ef | grep $name | grep -v grep | awk '{print $2}' | xargs kill -9
done

echo "done"

--- [여기까지] --

그런 후 netscape을 죽이려면

"killproc netscape"이런 식으로 netscape에 관련된 모든

프로세서를 죽이죠.

하여간 좋은 하루되시길.

발 담갔다. 이제 익숙해 지는길만이..

jinushun의 이미지

어떻게 사용하는 거죠?

해봐도 안되던데 .. -_-;;

내가 뭘 잘못알고있는건가요.

스크립트 파일이름을 pkill 으로 만들고 권한주고

./pkill 프로세스이름

이렇게 하니깐 안되던데요.

: 그런 파일이나 디렉토리가 없음 

이렇게 나옵니다

^^

----------------------------
www.nate.com
----------------------------

맹고이의 이미지

혹시 awk나 xargs 등등이 없어서 그런게 아닐까요? ^^;
저는 잘되는데...

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.