A huge pool of pre-built images by other developers and software companies containing their software apps and products that you can Pull, as well as use it to Push your […]
It’s possible to make configurations on the build process before building a Linux kernel. When it comes toconfigurations about kernel modules, we have three options for […]
Strace is a diagnostic, debugging and instructional userspace utility for Linux. It is used to monitor and tamper with interactions between processes and the Linux kernel, […]
Commands in a shell script are executed from top to bottom. If some commandsfail, the execution continues to the next command. For example: Failing commands do […]
In some situations, saving stdout and stderr of your terminal command output can be crucial, To automatically save stdout and stderr, there are several options you can go with `>` : Write stdout […]
The shell variable HISTCONTROL controls what goes into the command history of bash shell. If HISTCONTROL variable equals to “ignorespace”, that means commands starting with a […]