Many changes

This commit is contained in:
2024-03-20 09:48:43 -04:00
parent e955921008
commit edcd63486d
3 changed files with 12 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
# * Redistribution's of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Neither the name of Scott C. McCall nor the names of its
# * Neither the name of Scott C. MacCallum nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission of Scott C.
# MacCallum.
@@ -29,13 +29,13 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# Configure the maximum processes
# Configure the maximum kernel processes
echo "kern.maxproc=4096" >> /etc/sysctl.conf
# Configure the maximum threads
# Configure the maximum kernel threads
echo "kern.maxthread=4096" >> /etc/sysctl.conf
# Configure the maximum files
# Configure the maximum kernel files
echo "kern.maxfiles=32768" >> /etc/sysctl.conf
exit 0