LoginSignup
23

More than 5 years have passed since last update.

個人的に使っているおまじない一覧

Posted at

alias を貼るやり方は好きではないので一々打っている

順番は適当で参考程度に

tcpdump

tcpdump -s0 -A

この後に port 80 and host www.google.com みたいな感じで続ける

ホスト名を解決したくないなら -n オプションを付ける

dstat

dstat -tlamp

これに cpu の状況を確認したいなら --top-cpu-adv,IO を確認したいなら --top-io-adv でブロッキング IO を確認したいなら --top-bio-adv を付ける

rsync

rsync -vau -e 'ssh -c arcfour256' /hoge/fuga/ catatsuy.org:/hoge/fuga/

ディレクトリの最後には必ず / を付ける

netstat

netstat -tlnp

tcp の通信だけ見れる

参考 URL

詳しい解説は以下や man で確認して下さい

他にもあれば追記予定

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
23