From 8d2b23b4d2e3be5e5ee721f8f41289da87609be6 Mon Sep 17 00:00:00 2001 From: Angel-HF <49835792+Pelochus@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:37:29 +0200 Subject: [PATCH] Minor ulimit -n fix --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 71a4c9b..b81d0c9 100644 --- a/install.sh +++ b/install.sh @@ -39,7 +39,7 @@ cp ./build/build_aarch64_Release/llm_demo /usr/bin/rkllm # We also change the na message_print "Increasing file limit for all users (needed for LLMs to run)..." -echo "* soft nofile 8096" >> /etc/security/limits.conf +echo "* soft nofile 8192" >> /etc/security/limits.conf echo "* hard nofile 1048576" >> /etc/security/limits.conf message_print "Done installing ezrknn-llm!"