Linux檢視系統開機時間
有時候需要檢視Linux系統執行了多久時間,此時需要知道上次開機啟動時間; 有時候由於斷電或供電故障突然停機,需要檢視Linux開機時間/重啟時間; 下面總結一些檢視Linux開機關機時間的方法(非常全面)
1: who 命令檢視
who -b 檢視最後一次系統啟動的時間。
who -r 檢視當前系統執行時間
[root@DB-Server ~]# who -b
system boot May 11 09:27
2: last reboot
如下所示last reboot可以看到Linux系統歷史啟動的時間。 重啟一下作業系統後,然後
[root@DB-Server ~]# last reboot
reboot system boot 2.6.9-42.ELsmp Thu May 29 15:25 (00:07)
reboot system boot 2.6.9-42.ELsmp Sun May 11 09:27 (18+05:55)
wtmp begins Mon May 5 16:18:57 2014
如果只需要檢視最後一次Linux系統啟動的時間
[root@DB-Server ~]# last reboot | head -1
reboot system boot 2.6.9-42.ELsmp Thu May 29 15:25 (00:08)
3:TOP命令檢視
如下截圖所示,up後表示系統到目前執行了多久時間。反過來推算系統重啟時間
4: w命令檢視
如下截圖所示,up後表示系統到目前執行了多久時間。反過來推算系統重啟時間
5:uptime 命令檢視
6: 檢視/proc/uptime
[root@DB-Server ~]# cat /proc/uptime
1415.59 1401.42
[root@DB-Server ~]# date -d "`cut -f1 -d. /proc/uptime` seconds ago"
Thu May 29 15:24:57 CST 2014
[root@DB-Server ~]# date -d "$(awk -F. '{print $1}' /proc/uptime) second ago" +"%Y-%m-%d %H:%M:%S"
2014-05-29 15:24:57
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29209863/viewspace-2126885/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 檢視windows開機時間Windows
- 如何檢視 Linux 系統安裝的時間Linux
- Macbook如何檢視開機時間?Mac
- Linux下如何檢視系統啟動時間和執行時間Linux
- systeminfo 檢視windows 系統持續開啟時間Windows
- 檢視電腦的開關機時間
- 檢視oracle系統的執行時間Oracle
- Linux 獲取系統開機/啟動時間Linux
- Linux如何檢視系統/伺服器的執行時間及啟動時間?Linux伺服器
- win10如何檢視系統安裝的時間_win10檢視系統安裝時間的方法Win10
- Linux伺服器系統詳細檢視程式啟動時間Linux伺服器
- linux系統檢視調整swap空間Linux
- 檢視/修改Linux時區和時間Linux
- Linux 檢視程式啟動時間、執行時間Linux
- Linux下時間的檢視(轉)Linux
- win10 怎麼查開機時間_win10檢視開關機時間的方法Win10
- Linux 系統檢視命令Linux
- LINUX檢視系統版本Linux
- linux系統檢視命令Linux
- 檢視 Linux 系統資訊Linux
- 檢視系統中各種等待時間佔用的資料庫時間比例資料庫
- win10 如何檢視開機時長_win10檢視開機時長教程Win10
- Windows 檢視系統資訊及持續執行時間 - systeminfoWindows
- Linux系統檢視磁碟可用空間的5個命令Linux
- Linux 系統時間和硬體時間Linux
- 修改linux系統時間Linux
- linux同步系統時間Linux
- linux修改系統時間Linux
- linux 修改系統時間Linux
- Linux - 檢視系統的版本Linux
- linux系統檢視wwn號Linux
- 檢視Linux系統版本資訊Linux
- LINUX檢視系統日誌Linux
- linux檢視系統版本資訊Linux
- linux 檢視系統版本號Linux
- linux系統資訊檢視命令Linux
- Linux檢視系統命令(轉)Linux
- Linux系統檢查使用者賬戶到期時間Linux