4 releases
0.1.5 | Jul 10, 2024 |
---|---|
0.1.4 | Jul 3, 2024 |
0.1.3 | May 4, 2024 |
0.1.2 | Apr 29, 2024 |
#334 in Unix APIs
33 downloads per month
16KB
306 lines
kmoddep
A tiny library to work with Linux kernel module information. It currently features the following:
- finding all available kernels
- find module dependencies
- lsmod (as a function)
Documentation
https://docs.rs/kmoddep/latest/kmoddep/
Usage Example
use kmoddep::modinfo::lsmod;
fn main() {
for m in lsmod() {
println!("{:<30} {:<10} {} {}", m.name, m.mem_size, m.instances, m.dependencies.join(", ");
}
}