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?

[Linux][command] プロセスの優先度_nice

Posted at

niceコマンド

# nice [オプション] コマンド
オプション 英語の由来 説明
(デフォルト) nice デフォルトの優先度(通常は10)でコマンドを実行します。
-n niceness 実行するコマンドのnice値(優先度)を指定します。値が高いほど優先度が低くなり、他のプロセスに対して「親切(nice)」に振る舞います。
--help help コマンドの使用方法に関するヘルプ情報を表示します。
--version version コマンドのバージョン情報を表示します。

使用例

優先度(正)

# nice -n 15 tar czf home_backup.tar.gz /home

優先度(負)←rootユーザーのみ

# nice -n -10 tar czf home_backup.tar.gz /home

Ping-t

0
0
0

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?