This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-08-20 00:45:43 +02:00

6 lines
289 B
Bash

#!/bin/bash
# Set memlock limit for fabian user (needed for mlockall in BC-250 patch)
echo "fabian soft memlock unlimited" >> /etc/security/limits.conf
echo "fabian hard memlock unlimited" >> /etc/security/limits.conf
echo "Done. Log out and back in, or reboot for limits to take effect."