🍹Early to RISA 🧉@sh.itjust.worksM to Greentext@sh.itjust.works · 5 days agoAnon sets up a prank at schoolsh.itjust.worksimagemessage-square78fedilinkarrow-up1699arrow-down113
arrow-up1686arrow-down1imageAnon sets up a prank at schoolsh.itjust.works🍹Early to RISA 🧉@sh.itjust.worksM to Greentext@sh.itjust.works · 5 days agomessage-square78fedilink
minus-squareoptional@sh.itjust.workslinkfedilinkarrow-up2·4 days 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.
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.