cpu
型別和型號
核心版本
從系統最後一期啟動以來的時間,形式為
dd:hh:mm:ss
void partb()
printf("machine hostname: %s /n",computer);
//列印cpu型號
procfile=open("/proc/cpuinfo",o_rdonly);
info=read(procfile,all,sizeof(all));
start = strstr(all,"model name");
end = strstr(start,"/n");
int a= 0;
a = (int)end-(int)start;
char text[a];
strncpy(text,start,a);
printf("%s/n",text);
close(info);
//列印核心版本
printf("linux version: %s/n",uts.release);
//列印系統啟動時間
//列印系統啟動時間
fp=fopen("/proc/uptime","r");
char temp;
long run_time=0,re;
long day,hour,minute,second;
while ((temp=fgetc(fp))==' ')
dowhile(temp!='.');
re=run_time;
second=run_time%60;
run_time=run_time/60;
minute=run_time%60;
run_time=run_time/60;
hour=run_time%24;
day=run_time/24;
printf("machine has been on for:%2.2ld:%2.2ld:%2.2ld:%2.2ld/n",day,hour,minute,second);
fclose(fp);}
Linux檢視版本資訊及CPU核心 型號等
檢視linux系統安裝時間 passwd s root 檢視linux硬碟序列號 hdparm i dev sda 檢視linuxmac位址 ifconfig uname a linux euis1 2.6.9 55.elsmp 1 smp fri apr 20 17 03 35 edt 2007 ...
Linux檢視版本資訊及CPU核心 型號等
linux下如何檢視版本資訊,包括位數和多核資訊,下面是linux 檢視版本資訊以及檢視cpu核心資訊 cpu具體型號等等,整個cpu資訊一目了然。1.uname a linux檢視版本當前作業系統 核心資訊 linux euis1 2.6.9 55.elsmp 1 smp fri apr 20 1...
linux怎麼查詢cpu核心數
1.檢視邏輯cpu個數 cat proc cpuinfo grep processor sort u wc l 242.由於有超執行緒技術有必要檢視一下物理cpu個數 grep physical id proc cpuinfo sort u wc l 2 grep physical id proc ...