#probe #detect

os-detect-aosc

Detect an OS installed on a partition (fork from pop-os/distinst)

2 unstable releases

Uses new Rust 2024

new 0.2.0 Mar 29, 2025
0.1.0 Mar 29, 2025

#21 in #probe


Used in disk-types-aosc

MIT license

10KB
187 lines

os-detect

Rust crate for detecting the existence of an OS from an unmounted device, or path.

use os_detect::detect_os_from_device;
use std::path::Path;

pub fn main() {
    let device_path = &Path::new("/dev/sda3");
    let fs = "ext4";
    if let Some(os) = detect_os_from_device(device_path, fs) {
        println!("{:#?}", os);
    }
}

lib.rs:

Provides the means for for detecting the existence of an OS from an unmounted device, or path.

extern crate os_detect;

use os_detect::detect_os_from_device;
use std::path::Path;

pub fn main() {
    let device_path = &Path::new("/dev/sda3");
    let fs = "ext4";
    if let Some(os) = detect_os_from_device(device_path, fs) {
        println!("{:#?}", os);
    }
}

Dependencies

~3–12MB
~155K SLoC