Browsing Category
Linux
147 posts
Linux is a Unix-like operating system. It is a free and open-source operating system, which means that it is available to everyone to use and modify. Linux is used by millions of people around the world, and it is the operating system of choice for many servers, supercomputers, and embedded devices.
atq Command in Linux: Complete Guide to Viewing Scheduled Job Queue and Parameters
Once you’ve scheduled a handful of one-time jobs with at, you need a way to see what’s actually…
at Command in Linux: Complete Guide to Scheduling One-Time Tasks and Parameters
cron gets all the attention, but it’s the wrong tool for a huge category of everyday sysadmin needs:…
modprobe Command in Linux: Complete Guide to Loading Kernel Modules and Parameters
The first time a new network card, filesystem, or piece of hardware “just works” the moment you plug…
modinfo Command in Linux: Complete Guide to Displaying Module Information and Parameters
Before you load a kernel module — especially one you’re not already familiar with — it’s worth knowing…
lsmod Command in Linux: Complete Guide to Listing Loaded Kernel Modules and Parameters
Every time I’m troubleshooting a hardware issue, a networking oddity, or trying to understand what’s actually running inside…
ksyms Command in Linux: Complete Guide to Displaying Kernel Symbols and Parameters
ksyms is one of those commands that trips people up precisely because it’s mostly gone. If you’ve stumbled…
depmod Command in Linux: Complete Guide to Building Module Dependencies and Parameters
Behind every clean, dependency-aware modprobe some_module call sits a file that depmod built. Most administrators never run depmod…
rmmod Command in Linux: Complete Guide to Removing Kernel Modules and Parameters
There’s a specific kind of satisfaction in cleanly unloading a kernel module you no longer need — no…
insmod Command in Linux: Complete Guide to Inserting Kernel Modules and Parameters
insmod is the bare-metal way to get a compiled kernel module into a running kernel. No dependency resolution,…
How to See System Information via the /proc File System: Complete Linux System Monitoring Guide
If you’ve spent any real time on a Linux box, you’ve probably typed cat /proc/cpuinfo at least once…