LINUX.ORG.RU

А поиском попользоваться?
http://www.linux.org.ru/jump-message.jsp?msgid=435773

Создается файл /etc/profile.d/limits.sh c примерно таким содержимым:

#!/bin/sh

#########################################
# Default system limits
maxmem=400000 #(400M)
maxproc=256

# virtual memory
ulimit -SHv $maxmem

# maximum size of a process's data segment
ulimit -SHd $maxmem

# maximum size a process may lock into memory
ulimit -SHl $maxmem

# maximum resident set size
ulimit -SHm $maxmem

# maximum stack size
#ulimit -SHs $maxmem
ulimit -SHs 64000

# maximum number of open file descriptors
# (don't enable it; doesn't work for normal users)
#ulimit -SHn 1024

# maximum number of user processes
ulimit -SHu $maxproc

# no core files
ulimit -SHc 0

# cpu time (60 min) for local privileged users
if [ `id -g` -eq 100 ] ; then
ulimit -SHt 3600
fi

# cpu time (10 min) for other users
# max file size ctreated by the shell (100M) for other users
if [ `id -g` -gt 100 ] ; then
ulimit -SHt 600
fi

# max file size ctreated by the shell (1GiG)
#ulimit -SHf 1024000

#########################################

Deleted
()
Ответ на: комментарий от Deleted

Большое спасибо!

>А поиском попользоваться?

У меня даже небыло мыслей что искать и в каком направлении смотреть

cvv ★★★★★
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.