ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

【我的Rust库】get_local_info 0.1.6发布

2026/9/26 6:16:48 拓冰建站 浏览量
【我的Rust库】get_local_info 0.1.6发布

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 kylinlet osname = "uos";println!("{}", get_local_info::get_pc_system_ver(osname));//check proccess namelet pname = "gnome";println!("{}", get_local_info::get_pc_system_check_pname(pname));// flase is Real machine, true is vmprintln!("{}", get_local_info::get_pc_system_is_vm());// Obtain the update time of the antivirus databaselet 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