| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/python3-kmod/ |
Upload File : |
python-kmod
===========
Python bindings for kmod/libkmod
kmod is a set of tools to handle common tasks with Linux kernel modules like
insert, remove, list, check properties, resolve dependencies and aliases.
These tools are designed on top of libkmod, a library that is shipped with
kmod. It can be found at:
http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary
python-kmod is a Python wrapper module for libkmod, exposing common
module operations: listing installed modules, modprobe, and rmmod.
It is at:
https://github.com/agrover/python-kmod
Example (python invoked as root)
--------------------------------
::
>>> import kmod
>>> km = kmod.Kmod()
>>> km.loaded_modules()
[('nfs', 407706),
('nfs_acl', 12741)
...
('virtio_blk', 17549)]
>>> km.modprobe("btrfs")
>>> km.rmmod("btrfs")
Building
--------
Ensure Python, Cython, and the kmod headers are installed and run::
$ python setup.py build