Howto get hardware information in Linux using C++

前端 未结 5 1844
广开言路
广开言路 2021-02-14 17:01

I need to get specifications of hard disk on both Win and *nix machines. I used on Linux like this:

   static struct hd_driveid hd;
         


        
5条回答
  •  鱼传尺愫
    2021-02-14 17:43

    Nearly everything in your list has nothing to do with "specifications of hard disk":

    • The number of partitions depends on reading the partition table, and if you have any extended partitions, the partition tables of those partitions. The OS will usually do this bit for you when the device driver loads.
    • Partition information (namely the volume label) typically isn't available in the partition table. You need to guess the file system type and parse the file system header. The only thing in the partition table is the "type" byte, which doesn't tell you all that much, and the start/size.
    • Hard drives won't give you "real" CHS information. Additionally, the CHS information that the drive provides is "wrong" from the point of view of the BIOS (the BIOS does its own fudging).
    • Hard drives have a fixed sector size, which you can get with hd_driveid.sector_bytes (usually 512, but some modern drives use 4096). I'm not aware of a maximum "block size", which is a property of the filesystem. I'm also not sure why this is useful.
    • The total size in sectors is in hd_driveid.lba_capacity_2. Additionally, the size in bytes can probably be obtained with something like

      #define _FILE_OFFSET_BITS 64
      #include 
      #include 
      
      ...
      off_t size_in_bytes = lseek(device, 0, SEEK_END);
      if (size_in_bytes == (off_t)-1) { ... error, error code in ERRNO ... }
      

      Note that in both cases, it'll probably be a few megabytes bigger than sizes calculated by C×H×S.

    It might help if you told us why you wanted this information...

提交回复
热议问题