覚えておきたいLINUX コマンド

カーネル
$ cat /proc/version
Linux version 2.4.21-27.ELsmp (bhcompile@bugs.build.redhat.com) (gcc version 3.2.3 20030502 (RedHat Linux 3.2.3-47)) #1 SMP Wed Dec 1 21:59:02 EST 2004

$ uname -a
Linux spti-cms 2.4.21-27.ELsmp #1 SMP Wed Dec 1 21:59:02 EST 2004 i686 i686 i386 GNU/Linux


Apache
Server version: Apache/1.3.33 (Unix)
Server built: Mar 3 2006 19:19:46


Mysql
$ rpm -qi mysql
Name : mysql Relocations: (not relocatable)
Version : 5.0.77 Vendor: CentOS
Release : 4.el5_5.4 Build Date: 2010年11月04日 08時54分57秒
Install Date: 2010年11月15日 11時58分16秒 Build Host: builder10.centos.org
Group : Applications/Databases Source RPM: mysql-5.0.77-4.el5_5.4.src.rpm
Size : 8451667 License: GPLv2 with exceptions
Signature : DSA/SHA1, 2010年11月04日 09時07分21秒, Key ID a8a447dce8562897
URL : http://www.mysql.com
Summary : MySQL のクライアントプログラムと共有ライブラリ。
Description :
MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
client/server implementation consisting of a server daemon (mysqld)
and many different client programs and libraries. The base package
contains the MySQL client programs, the client shared libraries, and
generic MySQL files.


postfix
$ /usr/sbin/postconf | grep mail_version
mail_version = 2.2.1


php
$ php --version
PHP 5.1.6 (cli) (built: Mar 31 2010 02:39:17)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies


CPU情報
$ cat /proc/cpuinfo


MEMORY情報
$ cat /proc/meminfo


システムの情報を表示する [ uname ]
 -a 全ての情報を表示する
 -s カーネル名を表示する
 -n ホスト名を表示する
 -r カーネルリリースを表示する
 -v カーネルバージョンを表示する
 -p プロセッサのタイプを表示する
 -i ハードウェアプラットフォームを表示する
 -o オペレーティングシステムを表示する

コメント