UpFront

The UpFront Section

UpFront

Tech Tip

If you have a process ID but aren't sure whether it's valid, you can use the most unlikely of candidates to test it: the kill command. If you don't see any reference to this on the kill(1) man page, check the info pages. The man/info page states that signal 0 is special and that the exit code from kill tells whether a signal could be sent to the specified process (or processes).

So kill -0 will not terminate the process, and the return status can be used to determine whether a process is running. For example:


 $ echo $$     # show our process id
 12833
 $ /bin/bash   # create new process
 $ echo $$     # show new process id
 12902
 $ kill -0 12902
 $ echo $?     # exists, exit code is 0
 0
 $ exit        # return to previous shell
 $ kill -0 12902
 bash: kill: (12902) - No such process
 $ echo $?     # doesn't exist, exit code is 1
 1

Many UNIX dæmons store their process IDs in a file in /var/run when they are started. Using kill -0 to test the pid is a lot easier than parsing ps output. For example, to test whether cron is running, do the following:


 # kill -0 $(cat /var/run/cron.pid)
 # echo $?
 0

Tech Tip

txt2man converts flat ASCII text into the man page format. This allows you to author man pages without knowledge of nroff macros. It's a shell script that uses GNU awk, and it should run on any UNIX-like system. The script is available at mvertes.free.fr/txt2man/txt2man.

txt2man can generate its own man page for viewing on the screen via:


# txt2man -h 2>&1 | txt2man -T

The text source for the man page for txt2man is contained in the script itself; therefore, the source of the script shows you all you need to know to use txt2man.

Tech Tip

If the program you want to install doesn't have a package for your distribution, you can use checkinstall to make one. Checkinstall makes Debian-, RPM- and Slackware-compatible packages. You can find checkinstall at asic-linux.com.mx/~izto/checkinstall.

Once you install it, download the source to the program you want to install and configure it and build it just as you normally would do. When it's time to run make install, use this instead:

# checkinstall

Checkinstall will make a package and install it on your system. The original motivation for checkinstall was to create an easy way to remove programs that had been installed from source. Now that you have a package, you can remove it like any other package on your system.

______________________

Webcast
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers

Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.

Learn More

Sponsored by AMD

White Paper
Private PaaS for the Agile Enterprise

If you already use virtualized infrastructure, you are well on your way to leveraging the power of the cloud. Virtualization offers the promise of limitless resources, but how do you manage that scalability when your DevOps team doesn’t scale? In today’s hypercompetitive markets, fast results can make a difference between leading the pack vs. obsolescence. Organizations need more benefits from cloud computing than just raw resources. They need agility, flexibility, convenience, ROI, and control.

Stackato private Platform-as-a-Service technology from ActiveState extends your private cloud infrastructure by creating a private PaaS to provide on-demand availability, flexibility, control, and ultimately, faster time-to-market for your enterprise.

Learn More

Sponsored by ActiveState