fstat - общее количество файловых дескрипторов в системе freebsd?

Как получить текущее количество файловых дескрипторов в системе?

Я знаю, как получить максимум.

% sysctl kern.maxfiles
kern.maxfiles: 8232

Ref:

http://www.freebsd.org/cgi/man.cgi?query=fstat&apropos=0&sektion=0&manpath=FreeBSD+9.0-RELEASE&arch=default&format=html

2 ответа

Решение

Вы ищете kern.openfiles?

[ghoti@pc ~]$ sysctl -ad | grep 'kern.*files:'
kern.maxfiles: Maximum number of files
kern.openfiles: System-wide number of open files
[ghoti@pc ~]$ 

cat /proc/sys/fs/file-nr

Три столбца total file descriptors allocated since boot, free allocated file descriptors, maximum open file descriptors,

Дополнительная информация здесь.

Другие вопросы по тегам