🍹Early to RISA 🧉M to Greentext · 1 month agoAnon sets up a prank at schoolimagemessage-square78fedilinkarrow-up1721arrow-down114
arrow-up1707arrow-down1imageAnon sets up a prank at school🍹Early to RISA 🧉M to Greentext · 1 month agomessage-square78fedilink
minus-squaretetris11@lemmy.mllinkfedilinkarrow-up2·1 month agoHuh. I never made that connection before. I always thought ulimit was to prevent excessive disk writes or something
minus-squareoptionallinkfedilinkarrow-up2·1 month agoulimit -H -u 10 will (hard)limit the current process (the shell) to 10 subprocesses. You can also use it to limit the number of open files etc. To globally configure that for a user/group you’d use /etc/security/limits.conf instead. If you want to prevent users from filling up the disk, take a look into quota.
Huh. I never made that connection before. I always thought ulimit was to prevent excessive disk writes or something
ulimit -H -u 10
will (hard)limit the current process (the shell) to 10 subprocesses. You can also use it to limit the number of open files etc.To globally configure that for a user/group you’d use
/etc/security/limits.conf
instead.If you want to prevent users from filling up the disk, take a look into quota.