Aug
20
2008
This is a slick little perl script to move sites from a Windows web server to a Unix web server.
When websites are built on computers running Microsoft Windows, the case of file and directory names is often ignored. Other “widowsizms” are also introduced such as ending files with .htm instead of .html. This causes BIG problems if the site is served under unix.
nodoze is a “quick and dirty” Perl program to repair these websites so that they will work properly on a unix server.
nodoze - prepares websites built using Microsoft Windows for unix servers
May
28
2008
Wizard Boot Camp, Part Six: Daemons & Subshells | Linux Magazine
Let’s continue our discussion of Linux processes with a look at two unrelated concepts that are both good to understand. First we’ll write a simple daemon process and send signals to it. Then we’ll see how to suspend a child shell — which gives some insight into how shells cope with signals sent to them.
Apr
14
2008
Here is a good article on processes and signals on a Unix/Linux system. This also shows why sending a ‘kill -9′ to terminate a normal process is a bad idea. It doesn’t give the process a chance to clean up after itself.
Wizard Boot Camp, Part Five: Control Processes Using Signals | Linux Magazine
This month we’ll dig into process control: signals sent to processes and how a shell handles processes, including some details on job control.