Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux で、端末から特定の優先度値でプロセスを開始するにはどうすればよいですか?
次のコマンドを使用しますnice:
nice
nice -n 15 <command> <argument1> <argument2> …
例えば:
nice -n 15 sh -c 'while true; do true; done'
reniceまたはnice(検索)を使用して、優先度を下げることができます。増やすには、である必要がありますroot。
renice
root