こんちゃ(´・ω・)ノ
今回は
Linuxサーバのスペックを確認するコマンドを記載します。
ちなみにVMware上のCentOS5.4でコマンドを実行しました。
◆カーネル
[root@]# uname -a
Linux ashizaki.consul.com 2.6.18-164.el5 #1 SMP Thu Sep 3 03:33:56 EDT 2009 i686 i686 i386 GNU/Linux
※86_64とかamd64とかが表示されたら、64ビット版のカーネル。
◆64bit、32bit
[root@]# arch
i686
※i386,i486,i586,i686,i786は32bit
amd64, x86_64 は64bit
◆CPU
[root@]# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz
stepping : 8
cpu MHz : 2393.530
cache size : 3072 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss nx constant_tsc up ida pni ds_cpl smx
bogomips : 4787.06
※flagsの値にlmがあれば、64ビットCPU。
◆メモリ
[root@]# cat /proc/meminfo
MemTotal: 385300 kB
MemFree: 229320 kB
Buffers: 10052 kB
Cached: 82940 kB
SwapCached: 0 kB
Active: 79348 kB
Inactive: 60604 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 385300 kB
LowFree: 229320 kB
SwapTotal: 2072376 kB
SwapFree: 2072376 kB
Dirty: 44 kB
Writeback: 0 kB
AnonPages: 46960 kB
Mapped: 19612 kB
Slab: 9268 kB
PageTables: 1648 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 2265024 kB
Committed_AS: 138340 kB
VmallocTotal: 638968 kB
VmallocUsed: 4076 kB
VmallocChunk: 634540 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
Hugepagesize: 4096 kB
[root@]# free
total used free shared buffers cached
Mem: 385300 155980 229320 0 10060 82932
-/+ buffers/cache: 62988 322312
Swap: 2072376 0 2072376
◆ディスク
[root@]# df
Filesystem 1K-ブロック 使用 使用可 使用% マウント位置
/dev/sda1 8146544 4919836 2806212 64% /
tmpfs 192648 0 192648 0% /dev/shm
◆ネットワーク
[root@]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0C:29:EC:F0:90
inet addr:192.168.100.11 Bcast:192.168.100.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:feec:f090/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1463 errors:0 dropped:0 overruns:0 frame:0
TX packets:1305 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:124906 (121.9 KiB) TX bytes:205899 (201.0 KiB)
Interrupt:177 Base address:0x1400
eth0:1 Link encap:Ethernet HWaddr 00:0C:29:EC:F0:90
inet addr:192.168.100.12 Bcast:192.168.100.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:177 Base address:0x1400
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:1577 errors:0 dropped:0 overruns:0 frame:0
TX packets:1577 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:2464780 (2.3 MiB) TX bytes:2464780 (2.3 MiB)
◆色々
[root@]# /bin/dmesg
Linux version 2.6.18-164.el5 (
mockbuild@builder16.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-46)) #1 SMP Thu Sep 3 03:33:56 EDT 2009
BIOS-provided physical RAM map:
BIOS-e820: 0000000000010000 - 000000000009f800 (usable)
BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved)
(~長いので省略~)
ide: failed opcode was: 0xec
mtrr: your processor doesn't support write-combining
ip_tables: (C) 2000-2006 Netfilter Core Team
◆まとめ
いろいろほかにもコマンドやファイルがあるとは思いますが、
まぁ基本的なところはこんな感じでしょうか。
資料の作成などで、
Linuxサーバのスペック情報が必要な際にご活用ください。
[0回]
PR
COMMENT