Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
faq:nix [2023/02/05 01:57] – [Maximum Open Files] Add the /proc/#/limits tip for checking max open files on Linux digital man | faq:nix [2023/02/08 23:50] (current) – [Maximum Open Files] Replace pgrep with pidof digital man | ||
---|---|---|---|
Line 270: | Line 270: | ||
To view the hard limit: '' | To view the hard limit: '' | ||
- | Another method that works on Linux is to search for line beginning with "Max open files" in the file ''/ | + | Another method that works on Linux is to search for line beginning with "Max open files" in the file ''/ |
- | $ sudo grep "Max open files" /proc/$(pgrep sbbs)/ | + | $ sudo grep "Max open files" /proc/$(pidof sbbs)/ |
Max open files 10000 10000 files | Max open files 10000 10000 files | ||