You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
492 B
24 lines
492 B
python-kmod
|
|
===========
|
|
|
|
Python bindings for kmod/libkmod
|
|
|
|
python-kmod is a Python wrapper module for libkmod, exposing common
|
|
module operations: listing installed modules, modprobe, and rmmod.
|
|
It is at:
|
|
|
|
Example (python invoked as root)
|
|
--------------------------------
|
|
|
|
::
|
|
|
|
>>> import kmod
|
|
>>> km = kmod.Kmod()
|
|
>>> [(m.name, m.size) for m in km.loaded()]
|
|
[(u'nfs', 407706),
|
|
(u'nfs_acl', 12741)
|
|
...
|
|
(u'virtio_blk', 17549)]
|
|
>>> km.modprobe("btrfs")
|
|
>>> km.rmmod("btrfs")
|