0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Linux】プロセスとジョブの終了、どっちがベター?

Posted at

#プロセスとジョブの違いって何

同じ意味で使いがちだけど、、、と思って調べてみました。

###ジョブは処理全体の流れ
牛を育てるところから、食べる人に届くまでがジョブ。
job.jpg

###プロセスはひとつひとつの作業
牛を育てる:1プロセス
運送:1プロセス

process.jpg

ps コマンド:process status 実行中プロセスの表示
jobs コマンド:実行中ジョブ表示

たとえばkillコマンドさんはプロセスの終了に使う。

killコマンドさん
kill [PID]
#プロセスID[PID]を渡す

ということは、たくさんのプロセスを実行しているジョブさんでは、
終了したいなー→一つのプロセスを終了→ジョブ自体は終了していない可能性あり

ということで、ジョブの終了はジョブごと終了するほうがベターかも。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?