#detect #os #probe

os-detect

Detect an OS installed on a partition

1 unstable release

Uses old Rust 2015

0.2.2 Jan 3, 2019
0.2.1 Nov 8, 2018
0.2.0 Nov 8, 2018
0.1.0 Nov 2, 2018

#1507 in Filesystem

Download history 1/week @ 2023-11-27 1/week @ 2023-12-18 22/week @ 2023-12-25 1/week @ 2024-01-01 95/week @ 2024-01-08 19/week @ 2024-02-05 9/week @ 2024-02-12 20/week @ 2024-02-26 32/week @ 2024-03-04 10/week @ 2024-03-11

63 downloads per month
Used in 2 crates (via disk-types)

MIT license

9KB
168 lines

os-detect

Rust crate 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);
    }
}

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

~1.4–2.3MB
~40K SLoC