Linux to obtain the hard drive serial number C source code __linux

Source: Internet
Author: User

This code utilizes the Linux hdparm command, unifies the pipe pipeline technology to obtain the hard disk serial number skillfully, may conveniently use in the software encryption or the authentication domain

Char buf[256],info[1024]={0};
Char *pos;
int i;

snbuf[0]=0;
Fp=popen ("Hdparm-i/dev/hda", "R");
if (FP)
{
while (Fgets (buf,sizeof) (BUF), FP)
{
I=strlen (Info) +strlen (BUF);
if (i>1023) break;
strcat (INFO,BUF);
}
POS=STRCASESTR (Info, "serialno=");
if (POS) pos+=9;
i=0;
while (POS)
{
if ((*pos<= ' Z ' &&*pos>= ' A ')
|| (*pos<= ' z ' &&*pos>= ' a ')
|| (*pos<= ' 9 ' &&*pos>= ' 0 ')
|| (*pos== '))
{
Snbuf[i]=*pos;
i++;
if (i>buflen-10) break;
pos++;
}
Else
{
Break
}
}
snbuf[i]=0;
}
Pclose (FP);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.