get_local_info是一个获取linux本地信息的Rust三方库,其目标是降低获取本地linux系统信息的难度。支持银河麒麟10、UOS、鸿蒙等国产系统。

项目维护:长期

当前版本:0.1.6

当前功能:

1.网络功能

1.1获取活动网卡信息:网卡,IPv4,IPv6,mac

1.2.获取网络接口信息

2.获取系统版本

Kylin10支持2017及以上版本

Ubuntu支持22.04及以上版本

UOS20支持1020及以上版本

3.进程检测,虚拟机检测

4.信息安全检测

获取天融信反病毒库时间

怎么使用:

执行cargo add get_local_info,然后导入调用接口:

extern crate get_local_info;

fn main() {

println!("{}", get_local_info::get_pc_net_card_name());

println!("{}", get_local_info::get_pc_ipv4());

println!("{}", get_local_info::get_pc_ipv6());

println!("{}", get_local_info::get_pc_mac());

println!("{:?}", get_local_info::get_pc_net_card_info());

// osname: ubuntu or uos or kylin

let osname = "uos";

println!("{}", get_local_info::get_pc_system_ver(osname));

//check proccess name

let pname = "gnome";

println!("{}", get_local_info::get_pc_system_check_pname(pname));

// flase is Real machine, true is vm

println!("{}", get_local_info::get_pc_system_is_vm());

// Obtain the update time of the antivirus database

let antiname = "topsec";

println!("{}", get_local_info::get_pc_check_antiviruslib(antiname));

}

About the Author

Liu Qiang in Wuhan, China

crates: https://crates.io/crates/get_local_info

github: https://github.com/daijianshusheng/rs_libGetDeviceInfo

mail: liulcsy@qq.com

Created on 2023.12.28

精彩链接

评论可见,请评论后查看内容,谢谢!!!
 您阅读本篇文章共花了: