1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS Command Cheat Sheet

Last updated at Posted at 2016-08-11

はじめに

CentOSで使用するコマンドで忘れがちなものを纏めました。

環境

OS : CentOS 7.2.1511

前提

基本的なLinuxコマンド

参考

なし

解説

バージョン確認

実行
# cat /etc/redhat-release
結果
CentOS Linux release 7.2.1511 (Core)

アーキテクチャ(32ビット/64ビット)の確認を行うには下記コマンドを実行します。
出力結果に【x86_64】と表示されていれば64ビットOSが動作しています。
出力結果に【i386】や【i686】のように、【i〇86】の表記であれば32ビットOSとなります。

実行
# uname -m
結果
x86_64

IPアドレス確認

実行
# ip address show
結果
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:15:5d:0b:0c:05 brd ff:ff:ff:ff:ff:ff
    inet 192.168.11.18/24 brd 192.168.11.255 scope global dynamic eth0
       valid_lft 171631sec preferred_lft 171631sec
    inet6 fe80::215:5dff:fe0b:c05/64 scope link
       valid_lft forever preferred_lft forever

ルーティングテーブル確認

実行
# ip route
結果
default via 192.168.11.1 dev eth0  proto static  metric 100
192.168.11.0/24 dev eth0  proto kernel  scope link  src 192.168.11.18  metric 100
1
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?