LoginSignup
5
16

More than 5 years have passed since last update.

入れておくと便利なツール

Last updated at Posted at 2017-04-01

入れておくと便利なツール

入れておくと便利だなぁと思った汎用的なツールを列挙していきます。
常に編集していきます。(makeとか基本に入っているものは除く)

dig

ドメイン情報をDNSサーバーから取得するツール
nslookupの高級版といった方がいいかな?
これがないと始まらない。

yum -y install bind-utils

htop

topの高級版。メモリなどバーで見れたり、ソート出来たり、検索できたり。意外と便利。
epelなのでepelレポジトリ入れてない場合は

yum install epel-release
vi /etc/yum.repos.d/epel.repo
[epel]
enabled=1 → enabled=0

してから

yum --enablerepo=epel install htop

mailx

shell失敗・成功時などで気軽にメール送りたい時に入れておくと便利だと思います。

echo "testmsg" |mail -s "test mail" メールアドレス

で簡単に送れます。

yum install mailx

nmap

ポートスキャン

yum install nmap

whois

ドメイン情報を参照します。
epelなのでepelレポジトリ入れてない場合は

yum install epel-release
vi /etc/yum.repos.d/epel.repo
[epel]
enabled=1 → enabled=0

してから

yum --enablerepo=epel install jwhois
5
16
2

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
5
16