We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The /proc/mdstat file contains the current status of linux md devices, that are software RAID implementations provided by the kernel.
/proc/mdstat
md
The /proc/mdstat file is produced by this kernel code, it has a plain-text format. Some examples are available in this wiki page.
Due to the nature of the format, it can be parsed with regular expressions. An example parser (in Ruby) is available here.
Ideally, the output of the parsing should be a Rust data structure that contains the information available as plain text.
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
/proc/mdstat
file contains the current status of linuxmd
devices, that are software RAID implementations provided by the kernel.The
/proc/mdstat
file is produced by this kernel code, it has a plain-text format. Some examples are available in this wiki page.Due to the nature of the format, it can be parsed with regular expressions. An example parser (in Ruby) is available here.
Ideally, the output of the parsing should be a Rust data structure that contains the information available as plain text.
Thanks
The text was updated successfully, but these errors were encountered: