发布时间:2014-09-08 21:52:13
#include <stdio.h>#include <sys/ioctl.h>#include <linux/hdreg.h>#include <sys/stat.h>#include <fcntl.h> static intgetdiskid (char *hardc){int fd;struct hd_driveid hid;fd = open ("/dev/sda", O_RDONLY);if (fd < 0){return -1;}if (ioctl (fd, HDIO_GET_IDENTITY, &hid) < 0){re.........【阅读全文】