Ulimitとnprocは、* nixシステムで、特定のユーザーまたはアプリケーションのシステムプロセスとリソースを制限するために使用されます(私が間違っている場合は修正します)。両者の主な違いは何ですか?nprocとulimitの違いは?
7
A
答えて
14
nproc
coreutils
はプロセッサ数を表示します。 man nproc
から:man limits.conf
から
:
NPROC(1) User Commands NPROC(1)
NAME
nproc - print the number of processing units available
SYNOPSIS
nproc [OPTION]...
DESCRIPTION
Print the number of processing units available to the current process,
which may be less than the number of online processors
しかし、/etc/security/limits.conf
でnproc
設定は、実際のプロセスの数を制限
nproc
maximum number of processes
2
both are used for limiting the system processes and resources
号両方をするために使用されていません同じ目的。 ulimitは、リソースの制限を取得/設定するために使用されます。例えば
、各プロセスのスタックサイズの取得:unlimited
にスタックサイズを変更
$ulimit -s 1024
:1メガバイトにスタックサイズを変更
$ulimit -s
を
$ulimit -s unlimited
一方、nproc
は利用可能なプロセッサーをリストします。 ulimit
は、POSIX 2008以降では廃止されました。
+0
C関数 'ulimit'は廃止とマークされました。シェルコマンド 'ulimit'は持っていません。 – Jesin
関連する問題
- 1. はツイストとulimitの
- 2. ULIMITは
- 3. ulimit -t under ubuntu
- 4. SSHリモートコマンドの実行とulimitの
- 5. "ulimit -l"とはどういう意味ですか?
- 6. プロセスの仮想メモリサイズのulimit
- 7. Suse Linux ulimit -vグローバル設定
- 8. ドッキングウィンドウrunコマンドでのulimit値を変更
- 9. ベストulimitの設定を確認する
- 10. Ulimitがシェルで動作していない
- 11. python、ulimitで外部プログラムを起動
- 12. Ubuntu 16.04 ulimitでsystemd redis問題
- 13. ソフト仮想メモリ制限(ulimit -v)
- 14. Pythonでulimitとsysctl.conf変数にプログラムでアクセスできますか?
- 15. Linux、bashスクリプトのメモリ不足、インタラクティブではなくulimit?
- 16. httpとデフォルトのservemuxの違いは?この違いは何
- 17. CSSのプロパティの違いは、Firefox 3.1と3.5の違いは?
- 18. PHPの::と - の違いは?
- 19. Scalaの&と&&の違いは?
- 20. _declspecと__declspecの違いは?
- 21. Liferay:DLFileEntryLocalServiceUtilとDLAppLocalServiceUtilの違いは?
- 22. オブジェクトとハッシュの違いは?
- 23. hash_mapとunordered_mapの違いは?
- 24. smtpClient.send()とsmtpClient.SendAsync()の違いは?
- 25. MemcachedとHadoopの違いは?
- 26. .tagとタグの違いは
- 27. requireとremote.requireの違いは?
- 28. UseCookieAuthenticationとUseIdentityの違いは?
- 29. javax.sqlとjava.sqlの違いは?
- 30. NSURLConnectionとNSUrlSessionの違いは?
スタックオーバーフローは、プログラミングおよび開発の質問のサイトです。この質問は、プログラミングや開発に関するものではないので、話題にはならないようです。ヘルプセンターの[ここではどのトピックを参照できますか](http://stackoverflow.com/help/on-topic)を参照してください。おそらく、[スーパーユーザ](http://superuser.com/)や[Unix&Linux Stack Exchange](http://unix.stackexchange.com/)の方が良いかもしれません。 – jww