Thursday 23 February 2012

How to load a kernel module at boot time

Loadable kernel modules are a convenient way to modify the running kernel without rebuilding the kernel from scratch. One can also free up memory resources by unloading any unnecessary kernel module. A kernel module can be loaded or unloaded on the fly by the modprobe command. When loading a kernel module with modprobe, the command will also load any prerequisite module(s) automatically. Read more »

Friday 3 February 2012

How to migrate SVN repository

Subversion (SVN) is a version control system, maintaining versions for files and directories. SVN uses FSFS (Fast Secure File System) as the backend storage to store revision histories. Read more »