

I’ve been lucky, at two of my previous jobs, I was permitted to use a Linux laptop instead of the default Windows ones, it was wonderful.
Sadly you’re right though, at least in the US, even in the IT world, unless you’re working specifically at a Linux company, you’re almost certainly using Windows.
My current job is all Windows, even though my team spends a significant amount of time maintaining Linux systems. I just open up WSL and try to pretend It’s running on bare metal. 😞






The watch command is very useful, for those who don’t know, it starts an automated loop with a default of two seconds and executes whatever commands you place after it.
It allows you to actively monitor systems without having to manually re-run your command.
So for instance, if you wanted to see all storage block devices and monitor what a new storage device shows up as when you plug it in, you could do:
And see in real time the drive mount. Technically not “real time” because the default refresh is 2 seconds, but you can specify shorter or longer intervals.
Obviously my example is kind of silly, but you can combine this with other commands or even whole bash scripts to do some cool stuff.