This document provides instructions for creating a kernel module that makes a pseudo-file in the Linux /proc filesystem. It explains how to write a module that uses the create_proc_read_entry() and remove_proc_entry() functions to register a proc file that displays the value of the jiffies kernel variable. Sample code is provided for a minimal module template and a non-trivial example module that creates a /proc/jiffies file to read jiffies.