-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathprofile
43 lines (29 loc) · 982 Bytes
/
profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# /etc/profile
# The parameters in this file will be added/updated to the profile file.
# The maximum size of core files created.
ulimit -c unlimited
# The maximum size of a process's data segment.
ulimit -d unlimited
# The maximum size of files created by the shell (default option)
ulimit -f unlimited
# The maximum number of pending signals
ulimit -i unlimited
# The maximum size that may be locked into memory.
ulimit -l unlimited
# The maximum memory size
ulimit -m unlimited
# The maximum number of open file descriptors.
ulimit -n 1048576
# The maximum POSIX message queue size
ulimit -q unlimited
# The maximum stack size
ulimit -s -H 65536
ulimit -s 32768
# The maximum number of seconds to be used by each process.
ulimit -t unlimited
# The maximum number of processes available to a single user.
ulimit -u unlimited
# The maximum amount of virtual memory available to the process.
ulimit -v unlimited
# The maximum number of file locks.
ulimit -x unlimited