linux hostid 변경하기

#include <stdio.h>

#include <unistd.h>

int main() {

long id,res;

// get real (default) hostid

id = gethostid();

printf(“current hostid is: %x\\n”,id);

// set new hostid if is superuser

res = sethostid(0x007f0100);

if (res == 0) printf(“if result is zero – success! (%d) \\n”,res);

// check if it is changed….

id = gethostid();

printf(“current hostid is: %x ;-PPPppppp\\n”,id);

}

서진우

슈퍼컴퓨팅 전문 기업 클루닉스/ 상무(기술이사)/ 정보시스템감리사/ 시스존 블로그 운영자

You may also like...

페이스북/트위트/구글 계정으로 댓글 가능합니다.