mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-23 22:47:03 +01:00
double PAM file open limit
This commit is contained in:
parent
6a2e5525d0
commit
37d1f05a85
2 changed files with 10 additions and 8 deletions
|
@ -530,10 +530,10 @@ sudo dphys-swapfile uninstall
|
|||
|
||||
echo -e "\n*** INCREASE OPEN FILE LIMIT ***"
|
||||
# based on https://stadicus.github.io/RaspiBolt/raspibolt_21_security.html#increase-your-open-files-limit
|
||||
sudo sed --in-place -i "56s/.*/* soft nofile 128000/" /etc/security/limits.conf
|
||||
sudo bash -c "echo '* hard nofile 128000' >> /etc/security/limits.conf"
|
||||
sudo bash -c "echo 'root soft nofile 128000' >> /etc/security/limits.conf"
|
||||
sudo bash -c "echo 'root hard nofile 128000' >> /etc/security/limits.conf"
|
||||
sudo sed --in-place -i "56s/.*/* soft nofile 256000/" /etc/security/limits.conf
|
||||
sudo bash -c "echo '* hard nofile 256000' >> /etc/security/limits.conf"
|
||||
sudo bash -c "echo 'root soft nofile 256000' >> /etc/security/limits.conf"
|
||||
sudo bash -c "echo 'root hard nofile 256000' >> /etc/security/limits.conf"
|
||||
sudo bash -c "echo '# End of file' >> /etc/security/limits.conf"
|
||||
sudo sed --in-place -i "23s/.*/session required pam_limits.so/" /etc/pam.d/common-session
|
||||
sudo sed --in-place -i "25s/.*/session required pam_limits.so/" /etc/pam.d/common-session-noninteractive
|
||||
|
|
|
@ -1492,14 +1492,16 @@ if [ "$1" = "swap" ]; then
|
|||
if [ ${isBTRFS} -eq 1 ]; then
|
||||
|
||||
>&2 echo "# Rewrite external SWAP config for BTRFS setup"
|
||||
sudo sed -i "12s/.*/CONF_SWAPFILE=\/mnt\/temp\/swapfile/" /etc/dphys-swapfile
|
||||
sudo sed -i "16s/.*/#CONF_SWAPSIZE=/" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^#CONF_SWAPFILE=/CONF_SWAPFILE=/g" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^CONF_SWAPFILE=.*/CONF_SWAPFILE=\/mnt\/temp\/swapfile/g" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^CONF_SWAPSIZE=/#CONF_SWAPSIZE=/g" /etc/dphys-swapfile
|
||||
|
||||
else
|
||||
|
||||
>&2 echo "# Rewrite external SWAP config for EXT4 setup"
|
||||
sudo sed -i "12s/.*/CONF_SWAPFILE=\/mnt\/hdd\/swapfile/" /etc/dphys-swapfile
|
||||
sudo sed -i "16s/.*/#CONF_SWAPSIZE=/" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^#CONF_SWAPFILE=/CONF_SWAPFILE=/g" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^CONF_SWAPFILE=.*/CONF_SWAPFILE=\/mnt\/hdd\/swapfile/g" /etc/dphys-swapfile
|
||||
sudo sed -i "s/^CONF_SWAPSIZE=/#CONF_SWAPSIZE=/g" /etc/dphys-swapfile
|
||||
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue