I would like to share this wonderful event in my life with all TGS readers. We are blessed with a beautiful baby girl. Both mom and baby are doing well. Holding this cute tiny package in my hands puts my life in perspective, and instantly gives me more meaning and purpose to my life. Words [...]
February 2011
This article explains how to add iptables firewall rules using the “iptables -A” (append) command. “-A” is for append. If it makes it easier for you to remember “-A” as add-rule (instead of append-rule), it is OK. But, keep in mind that “-A” adds the rule at the end of the chain. Again, it is [...]
Question: How do I send signal to another process? Can you explain me all available options to send signals to a process in UNIX / Linux environment? Answer: You can send various signals to processes using one of the methods explains in this article. 1. Send Signal to a Process Using Kill Use kill command [...]
Press the power button on your system, and after few moments you see the Linux login prompt. Have you ever wondered what happens behind the scenes from the time you press the power button until the Linux login prompt appears? The following are the 6 high level stages of a typical Linux boot process. 1. [...]
You would set the sticky bit primarily on directories in UNIX / Linux. If you set the sticky bit to a directory, other users cannot delete or rename the files (or subdirectories) within that directory. When the sticky bit is set on a directory, only the owner and the root user can delete / rename [...]