- 関
- killing
linux
- option
- 9 KILL プロセスの強制終了
- kill -9 process_id
WordNet
- overwhelm with hilarity, pleasure, or admiration; "The comedian was so funny, he was killing me!"
- cause to cease operating; "kill the engine"
- destroy a vitally essential quality of or in; "Eating artichokes kills the taste of all other foods"
- tire out completely; "The daily stress of her work is killing her"
- the destruction of an enemy plane or ship or tank or missile; "the pilot reported two kills during the mission"
- mark for deletion, rub off, or erase; "kill these lines in the Presidents speech" (同)obliterate, wipe_out
- thwart the passage of; "kill a motion"; "he shot down the students proposal" (同)shoot down, defeat, vote down, vote out
- be fatal; "cigarettes kill"; "drunken driving kills"
- be the source of great pain for; "These new shoes are killing me!"
- cause the death of, without intention; "She was killed in the collision of three cars"
- cause to die; put to death, usually intentionally or knowingly; "This man killed several people when he tried to rob a bank"; "The farmer killed a pig for the holidays"
- deprive of life; "AIDS has killed thousands in Africa"
- hit with great force; "He killed the ball"
- hit with so much force as to make a return impossible, in racket games; "She killed the ball"
- small mostly marine warm-water carp-like schooling fishes; used as bait or aquarium fishes or in mosquito control
- clingfish with typical skillet shape (同)skilletfish, Gobiesox strumosus
- a person who lacks technical training
- very funny; "a killing joke"; "sidesplitting antics" (同)sidesplitting
- a very large profit (同)cleanup
- the act of terminating a life (同)kill, putting to death
- an event that causes someone to die (同)violent_death
PrepTutorEJDIC
- 〈人・動物〉‘を'『殺す』,死亡させる / 〈植物〉‘を'枯らす / …‘を'だめにする,失わせる / 《話》…‘を'ひどく痛ませる(疲れさせる,不快にさせる) / 〈時間〉‘を'つぶす / 〈記事など〉‘を'没にする,握りつぶす / 人殺しをする / 殺すこと;(特に狩猟の)獲物をしとめること / (猟の)獲物
- 殺害;屠殺(とさつ) / 《話》(特に商売での)大もうけ / (仕事などが)疲労こんぱいさせる,ひどく骨の折れる
Wikipedia preview
出典(authority):フリー百科事典『ウィキペディア(Wikipedia)』「2015/07/13 07:37:58」(JST)
[Wiki ja表示]
|
「Kill」のその他の用法については「Kill (曖昧さ回避)」をご覧ください。 |
kill
(キル)は、UNIXやUnix系のオペレーティングシステムにおいて、システム上で動作しているプロセスに簡単なメッセージを送るコマンドである。デフォルトで送るメッセージは、終了(termination)シグナルであり、プロセスに終了(exit)することを要求する。しかし、killは少し誤った名称である。送られるシグナルは、プロセスの終了とは無関係の場合がある。kill
コマンドは kill()
システムコールのラッパーであり、数字のプロセス識別子(PID)で指示されたプロセスや、プロセスグループ識別子(PGID)で指示されたプロセスグループに、シグナルを送る。kill
は昔からスタンドアロンのユーティリティとして提供されているが、多くのシェルはわずかに異なるビルトインのkill
コマンドを持っている。
ユーザが通常最も利用するシグナルはSIGTERMとSIGKILLであるが、kill
は多くの異なるシグナルを送ることも可能である(シグナル全体のリストはシグナルを参照)。デフォルトで送られるシグナルはSIGTERMである。このシグナルを扱うプログラムは、プログラムを終了する前に、役に立つクリーンアップの処理(構成情報をファイルに保存するなど)を行うことが出来る。しかし、多くのプログラムはこのシグナルに対して特別なハンドラを実装しておらず、デフォルトシグナルハンドラが代わりに呼ばれる。時には、特別なハンドラを持つプロセスでさえ、シグナルを正しく処理していないことがある。
SIGKILLとSIGSTOP以外の全てのシグナルは、プロセスによって横取りすることが出来る。これは、プログラムがシグナルを受信したときに、特別な関数を呼び出せることを意味している。二つの例外のSIGKILLとSIGSTOPは、ホストシステムのカーネルだけが処理を行い、プロセス実行のコントロールについて信頼できる方法を提供している。SIGKILLはプロセスを終了させる。SIGSTOPは、SIGCONTを受けるまでの間、プロセスを中断させる。
UNIXは、権限のないユーザが他のプロセスを終了させることを防止するため、セキュリティの機構を提供している。基本的には、あるプロセスが別のプロセスにシグナルを送るとき、シグナルを送るプロセスの所有者は、シグナルを受けるプロセスの所有者と同じか、スーパーユーザーであることが求められる。
利用可能なシグナルは全て異なる名前を持ち、特定の数字にマッピングされている。UNIXの実装によって、数字とシグナルのマッピングが異なることに注意する必要がある。SIGTERMは多くの場合15であり、SIGKILLは多くの場合9である。
目次
- 1 例
- 2 関連するプログラム
- 3 Windows
- 4 Plan 9
- 5 関連項目
- 6 参照
- 7 外部リンク
例
プロセスに対して以下の3つの方法でSIGTERMシグナルを送ることができる(この場合はプロセスIDは'1234' である):
kill 1234
kill -TERM 1234
kill -15 1234
また、プロセスに対して以下の2つの方法でSIGKILLシグナルを送ることができる:
kill -KILL 1234
kill -9 1234
他の有用なシグナルには、HUP、TRAP、INT、ALRM等がある。SIGINTシグナルは、多くのシェルで、単純にCTRL+Cを押すことで発生させることができる。一般的に、CTRL+ZがSIGTSTPに、 CTRL+\ (バックスラッシュ) がSIGQUITに割り当てられている。SIGQUITはプログラムにコアダンプを行わせることが出来る。
関連するプログラム
- killall - Solaris等のいくつかのUNIX系OSでは、システムのシャットダウンの過程でこのユーティリティが自動的に起動される。これは、上記のkillコマンドのような働きを行うが、特定のプロセスにシグナルを送るのではなく、システムの全てのプロセスにシグナルを送る。しかし、IRIX・Linux・FreeBSDのような他のシステムでは、終了させるプロセスの名前を指定するためのパラメータを使用する。例えば、xmmsによって起動されたXMMS音楽プレーヤを終了させるために、
killall xmms
というコマンドが使用される。これはxmms
という名前の全てのプロセスを終了させる。
- pkill - これは、名前や他の属性に基づいて、プロセスにシグナルを送る。Solaris 7で導入され、LinuxとOpenBSDで再実装された。pkillは、終了させるプロセスをより便利な名前を基準に指定できる。例えば、pkillを使用せずに(また、pgrepも使用せずに)、firefoxという名前のプロセスを終了させる場合は、
kill `ps -ax | grep firefox | grep -v grep | awk '{print $1}'`
をタイプする必要がある。pkillが使用できる場合は、単純にpkill firefox
とタイプするだけよい。
Windows
Microsoft Windows XPとMicrosoft Windows Vistaには、プロセスを終了させるためのtaskkillコマンド[1]がある。また、非サポート版のkillが、Windows NT 3.x, NT 4.0, Windows 2000, Microsoft Windows Server 2003向けのMicrosoft Windows Resource Kits(または"RezKits")に含まれていた。バージョン3.5のkill(Copyright (C) 1994 Microsoft Corp.)が最も有用であった。GNUバージョンのkillは、Cygwinによって移植され、Microsoft Windows Services for UNIX[2]が提供するUNIX OSレイヤ中で動作した。(マイクロソフトは1999年9月17日に、Softway Systems社と同社のInterix製品を買収することで、Microsoft Windows Services for UNIXを手に入れた。)
killは、Win32の世界のスレッドと実行形式の個別の管理に、待望された粒度を提供した。しかし実質的には、どのkillの派生版も(POSIXの世界から移植されたものも、模倣したりスクラッチから作られたものも)、競合するUnixのような、実行中のウィンドウズのプロセスに対する完全な機能がなく、根本的な制御が行えなかった。
Plan 9
Plan 9において、killプログラムは実際には終了の動作をせず、プロセスIDも使用しない。むしろ、プロセスの実際の名前を使用し、プロセスを終了させるために、Plan 9のシェルであるrcに対するコマンドを出力する。例えば、実行中のtroffを全て終了させるときは、以下のようにタイプする。
kill troff | rc
slayと呼ばれる類似のコマンドが提供されている。この方法で終了されることを拒否するプロセス以外に対しては同じ動作である。
関連項目
- シグナル
- Xkill
- killall
- pkill
- signal.h
参照
- ^ Microsoft TechNet taskkill article
- ^ Windows Services for UNIX
外部リンク
- killコマンド - Linuxマニュアル(英語)
- kill(1) コマンド man page(SunOS リファレンスマニュアル)
- kill(1) コマンド man page(HP-UX リファレンス)
- killシステムコール - Linuxマニュアル(英語)
- kill(2) システム・コール man page(Solaris 10 Reference Manual Collection)(英語)
- kill(2) システム・コール man page(HP-UX リファレンス)
[Wiki en表示]
|
Look up kill in Wiktionary, the free dictionary. |
Kill may refer to:
- The act of causing the death of a living organism
- homicide, one human killing another
Contents
- 1 Books
- 2 Computing
- 3 Places
- 4 Media
- 5 Sports
- 6 Other
- 7 See also
Books
- La Curée (The Kill), a novel by Émile Zola
Computing
- Kill (command), a computing command
Places
- Northern Ireland, UK
- Kill, County Tyrone, a townland in County Tyrone, Northern Ireland
- Republic of Ireland
- Kill, a townland in Kilcar, County Donegal, Ireland
- Kill, County Dublin
- Kill, County Kildare
- Kill, County Waterford
- Kill, County Westmeath a townland
Media
- Kill!, a 1968 film directed by Kihachi Okamoto
- Kill (Cannibal Corpse album)
- Kill (Electric Six album)
- "The Kill", a song by Thirty Seconds to Mars
- "The Kill", a song by Joy Division, released on their live album Still
Sports
- Baserunner kill, a baseball term
- Penalty kill, an ice hockey term
- Kill, a type of attack in volleyball
Other
See also
- All pages with titles containing "Kill"
- All pages beginning with "Kill"
- The Kills
- Killing (disambiguation)
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
English Journal
- Modular analysis of hipposin, a histone-derived antimicrobial peptide consisting of membrane translocating and membrane permeabilizing fragments.
- Bustillo ME1, Fischer AL2, LaBouyer MA1, Klaips JA2, Webb AC3, Elmore DE4.
- Biochimica et biophysica acta.Biochim Biophys Acta.2014 Sep;1838(9):2228-33. doi: 10.1016/j.bbamem.2014.04.010. Epub 2014 Apr 18.
- Antimicrobial peptides continue to garner attention as potential alternatives to conventional antibiotics. Hipposin is a histone-derived antimicrobial peptide (HDAP) previously isolated from Atlantic halibut. Though potent against bacteria, its antibacterial mechanism had not been characterized. The
- PMID 24747525
- Two interdependent mechanisms of antimicrobial activity allow for efficient killing in nylon-3-based polymeric mimics of innate immunity peptides.
- Lee MW1, Chakraborty S2, Schmidt NW1, Murgai R1, Gellman SH2, Wong GC3.
- Biochimica et biophysica acta.Biochim Biophys Acta.2014 Sep;1838(9):2269-79. doi: 10.1016/j.bbamem.2014.04.007. Epub 2014 Apr 14.
- Novel synthetic mimics of antimicrobial peptides have been developed to exhibit structural properties and antimicrobial activity similar to those of natural antimicrobial peptides (AMPs) of the innate immune system. These molecules have a number of potential advantages over conventional antibiotics,
- PMID 24743021
- PEG-PLA nanoparticles modified with APTEDB peptide for enhanced anti-angiogenic and anti-glioma therapy.
- Gu G1, Hu Q2, Feng X2, Gao X3, Menglin J2, Kang T2, Jiang D2, Song Q3, Chen H3, Chen J4.
- Biomaterials.Biomaterials.2014 Sep;35(28):8215-26. doi: 10.1016/j.biomaterials.2014.06.022. Epub 2014 Jun 25.
- Tumor neovasculature and tumor cells dual-targeting chemotherapy can not only destroy the tumor neovasculature, cut off the supply of nutrition and starve the tumor cells, but also directly kill tumor cells, holding great potential in overcoming the drawbacks of anti-angiogenic therapy only and impr
- PMID 24974009
- Enhancing therapeutic efficacy through designed aggregation of nanoparticles.
- Sadhukha T1, Wiedmann TS1, Panyam J2.
- Biomaterials.Biomaterials.2014 Sep;35(27):7860-9. doi: 10.1016/j.biomaterials.2014.05.085. Epub 2014 Jun 16.
- Particle size is a key determinant of biological performance of sub-micron size delivery systems. Previous studies investigating the effect of particle size have primarily focused on well-dispersed nanoparticles. However, inorganic nanoparticles are prone to aggregation in biological environments. I
- PMID 24947232
Japanese Journal
- A Preliminary Corpus-based Study on the Synonyms of slay and kill in Old English
- モリスンの『ビラヴィド』再考 : ストウの『アンクル・トムの小屋』を書き直す(関西英文学研究)
- 山下 昇
- 英文学研究. 支部統合号 7, 193-200, 2015-01-20
- … Sethe of Beloved and Cassy of Uncle Tom kill their babies in order to save them from tortuous slave lives. …
- NAID 110009908891
- Women Beware Women and a Triumph of the Drama(tist) (関西英文学研究 第8号)
- 森井 祐介
- 英文学研究. 支部統合号 7, 159-165, 2015-01-20
- … This figurative abuse of theatricality substantiates itself in the masque where characters actually kill each other. …
- NAID 110009908887
- 地中から作家を突き動かすもの : F. Scott Fitzgerald "The Curious Case of Benjamin Button"と父親殺し(東北英文学研究)
- 松浦 和宏
- 英文学研究. 支部統合号 7, 23-32, 2015-01-20
- … However, Benjamin does not kill his father physically; …
- NAID 110009908873
Related Links
- Killシグナルによるプロセスの終了(killed 11:SIGSEGV 不正なメモリー参照(Segmentation fault)によるプロセスの終了 13:SIGPIPE パイプ(Pipe)破壊によるプロセスの終了 14:SIGALRM alerm関数によるプロセスの終了 1625番 ...
- 番号 シグナル 説明 0 NULL アクセスチェック 1 HUP 終了後再起動 2 INT ユーザーからの強制終了命令(Ctrl+Cキーと同じ) 3 ... kill -l シグナル名の一覧を表示 kill -TERM 1234 1234番のプロセスを終了 kill -9 1234 1234番のプロセスを ...
- NEWS 1日限定オールナイトイベント決定!! 2010年4月10日(土) 池袋・新文芸座にて『斬~KILL~』が上映されます。押井監督特集として1日限定のオールナイトイベントとなります。『斬~KILL~』の他、押井監督実写作品3本との ...
Related Pictures
★リンクテーブル★
[★]
- 英
- killing、kill
- 関
- 殺す、殺人、殺人者
[★]
- 関
- adaptive behavior, psychological adaptation, psychological adjustment
[★]
- 関
- developmental coordination disorder
[★]
- 関
- homicide、kill、murder