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

#1551 in Filesystem

44 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

~2.2–3MB
~56K SLoC