Monospace Mentor

Monospace Mentor's avatar
Monospace Mentor
npub1p7sm...40xd
I'm Jochen Lillich, a greybeard geek and IT operations black belt. #DevOps trainer and mentor. German living in Ireland. Likes #Linux, #Ruby and #MechanicalKeyboards. He/him. Website: https://monospacementor.com Live stream: https://monospacementor.com/live-stream/ Blog: nostr:npub1ew38fpk790c2gccln9zf6ssqrqrnrvzdzx5awk7a5un0a7aukpdsw8enxe
In my conversations with junior engineers, the issue of work hours comes up often. There's a lot of bad advice out there, for example "You need to work 80-hour weeks to get good." I wrote an article on why that's silly. ➜
#Linux can lock accounts after login failures. For example, edit `/etc/security/faillock.conf` to set `deny=5` (lock after 5 failures) and `unlock_time=900` (15-minute lockout). 🔗 Learn more in my course: #SysAdmin #SystemAdministration
Tip for Linux shell beginners: Execute a second command only if the first one was successful. `command_1 && command 2` Background: This compound command uses the result code returned by `command_1` with the "shortcircuit" behaviour of the "logical AND" `&&` operator.