#!/bin/bash

# Linux Version
cat /proc/version

# Redhat Version
redhatVersion=`cat /etc/redhat-release`
echo $redhatVersion

# Memory Total Size
cat /proc/meminfo | grep MemTotal | awk '{print $2$3}'

# CPU model
cat /proc/cpuinfo | grep 'model name' | head -n 1

# CPU Number
cat /proc/cpuinfo | grep processor | wc -l

# Disk Information
df=`df -h |  grep -v grep `
echo -n "$df"

'unix and linux' 카테고리의 다른 글

How to get the biggest filesystem In all filesystem  (0) 2009.06.09
bash와 csh의 차이점  (0) 2009.03.24
시스템 정보 가지고 오기 #1  (0) 2009.03.24
bash 에서 ( 사용관련 팁  (0) 2009.03.24
SED 튜터리얼 sed tutorial  (0) 2009.03.13
Posted by '김용환'
,