Install paclink-unix
- Configure a single MTA
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
plu:verify_kernel [2014/01/16 17:10] gunn created |
plu:verify_kernel [2017/09/29 10:18] (current) gunn [Monolithic kernel] |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Verify Linux kernel ====== | ====== Verify Linux kernel ====== | ||
| - | + | * The AX.25 stack could have either been built into a monolithic kernel or installed as a kernel module | |
| - | * Check both of these choices | + | * Check both of these methods to determine if your kernel is AX.25 ready |
| ===== Monolithic kernel ===== | ===== Monolithic kernel ===== | ||
| <code bash> | <code bash> | ||
| - | grep -i net_ax25 /proc/kallsyms | + | grep -i "ax25*" /proc/kallsyms |
| </code> | </code> | ||
| c03b3654 t bin_net_ax25_table | c03b3654 t bin_net_ax25_table | ||
| Line 15: | Line 15: | ||
| </code> | </code> | ||
| ax25 46950 3 mkiss | ax25 46950 3 mkiss | ||
| + | |||
| + | ===== How to Load the AX.25 Linux kernel module ====== | ||
| + | * Determine your kernel version | ||
| + | <code bash> | ||
| + | uname -r | ||
| + | </code> | ||
| + | * As root run the following command replacing <kernel_version_number> with result of above command | ||
| + | <code bash> | ||
| + | insmod /lib/modules/<kernel_version_number>/kernel/net/ax25/ax25.ko | ||
| + | </code> | ||
| + | * Add an ax25 entry to /etc/modules to load the ax25 module at boot time | ||
| + | <file> | ||
| + | ax25 | ||
| + | </file> | ||
| + | |||