Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux 下使用命令行查看 內核版本 | 系統版本 | cpu 位數 | 內存

Linux 下使用命令行查看 內核版本 | 系統版本 | cpu 位數 | 內存

日期:2017/2/7 14:35:12      編輯:Linux教程
 

查看系統內核版本:
# uname -a

查看系統版本:
# more /etc/redhat-release

查看內核版本 GCC 版本:
# more /proc/version

查看 cpu 信息:
# grep “model name” /proc/cpuinfo
# more /proc/cpuinfo

查看 cpu 的位數:
# getconf LONG_BIT

查看內存的信息:
# more /proc/meminfo

查看系統資源使用情況:(每 5 秒刷新一次)
# vmstat 5

查看 linux 進程:
# top

查看內存使用情況:
# free

查看磁盤 i/o:(每 2 秒刷新一次)
# iostat -d -x /dev/sdc3 2

查看用戶磁盤權限:
# quota [-u] <username>

查看其他硬件信息:
# dmidecode|more

Copyright © Windows教程網 All Rights Reserved