如何在Linux中使用C ++获取有关主板的信息?

时间:2018-10-11 14:33:21

标签: c++ motherboard

对于Linux中的CPU:

// ...
string str;
ifstream file("/proc/cpuinfo");
while (file) {
  std::getline(file, str);
  if (str.find("model name") != std::string::npos) {
    // ...
  }
  else
  if (str.find("vendor_id") != std::string::npos) {
    // ...
  }
  // ...
}

您可以获得有关处理器的信息。以及如何在Linux中使用C ++获取有关主板的信息?

谢谢朋友!

0 个答案:

没有答案