segfaultDelirium

Results 4 comments of segfaultDelirium

I achived what I wanted with this: ``` let output = Command::new("parted") .arg(diskpath) .arg("mklabel") .arg("gpt") .output() .expect("failed to execute parted command"); if !output.status.success() { eprintln!("Error: {:?}", output); return Ok(()); }...

Thank you, sorry that my initial question sounded angry :( I'll try it