blob: 53a238aedc540ae1658721764e43fbea3cddaf7f [file] [log] [blame]
Andy Grover3aa27ba2012-03-13 15:00:37 -07001python-kmod
2===========
3
Andy Grover31aa6832012-03-13 15:06:37 -07004Python bindings for kmod/libkmod
Andy Grover3aa27ba2012-03-13 15:00:37 -07005
Andy Grover31aa6832012-03-13 15:06:37 -07006kmod is a set of tools to handle common tasks with Linux kernel modules like
7insert, remove, list, check properties, resolve dependencies and aliases.
8
9These tools are designed on top of libkmod, a library that is shipped with
10kmod. It can be found at:
Andy Grover3aa27ba2012-03-13 15:00:37 -070011
12http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary
13
14python-kmod is a Python wrapper module for libkmod, exposing common
15module operations: listing installed modules, modprobe, and rmmod.
16It is at:
17
18https://github.com/agrover/python-kmod
19
20Example (python invoked as root)
21--------------------------------
22
23>>>import kmod
24
25>>>km = kmod.Kmod()
26
27>>>km.loaded_modules()
28
29[('nfs', 407706),
30 ('nfs_acl', 12741)
31
32...
33
34 ('virtio_blk', 17549)]
35
36>>>km.modprobe("btrfs")
37
38>>>km.rmmod("btrfs")
39
40Building
41--------
42
43Ensure Python and kmod headers are installed and run:
44
45python setup.py build
46
47