#include
#include
#include
#include
#include
#include
#include
#include
static unsigned long print_uptime(void)
size = read(fd, tmpbuf, sizeof(tmpbuf));
close(fd);
while(tmpbuf[i] != '.')
buffer[i] = '\0';
second = atol(buffer);
printf("machine run time seconds : %ld \n", second);
return second;
void main(void)
print_uptime();
}
Linux開機自動獲取IP
vmware安裝centos完畢,登入系統之後輸入 ifconfig命令,如下圖所示 未獲取有效ip 檢查vmware的網路配置資訊,如下圖所示 臨時方案 用ifup命令啟用指定網路介面 ifup eth0 說明 此方案只適用於一次性使用,系統重啟後,需要再次啟用。使用root使用者登入系統,執行以...
雙系統時ubuntu更改開機引導
我們在windows上安裝ubuntu雙系統的時候,ubuntu的引導會預設先進入ubuntu系統,這對於那些想使用ubuntu但是並不常用ubuntu系統的人有一些不方便。在網上我有看到easebcd這個軟體可以用來管理啟動項的。但是因為個人之前和身邊的朋友使用過,感覺其實並沒有解決使用者的問題,...
Android下獲取開機時間
我的思路是 程式裡註冊個廣播接收器,接收開機啟動的廣播,當程式接到該廣播後,寫入檔案sharedpreferences,當我們程式需要用到開機時間時,再從sharedpreferences中讀取資訊。廢話不多說,下面上原始碼。androidmanifest.xml receiver檔案,記錄開機時間...