Command Line で使用しているツールまとめ vol.9


iftop

ネットワーク接続を監視する。

$ pacman -S iftop

htop

topコマンドを操作しやすくしたインターフェイスを提供します。cpu監視など。

$ pacman -S htop

slabtop

メモリ使用率を表示します。

$ pacman -S procps

参考:https://gist.github.com/iZRIdJJ53S/6916239

AIDE

侵入検知システムです。簡易な設定スクリプトがあるので、それを使用してみては。

$ pacman -S aide
$ sudo aide -D

$ aide -i

$ aide -u

cronで定期に通知する。

#!/bin/bash -e

# these should be the same as what's defined in /etc/aide.conf
database=/var/lib/aide/aide.db.gz
database_out=/var/lib/aide/aide.db.new.gz

if [ ! -f "$database" ]; then
        echo "$database not found" >&2
        exit 1
fi

aide -u || true

mv $database $database.back
mv $database_out $database

参考:https://wiki.archlinux.org/index.php/AIDE

chkrootkit

マルウェア検出。

yaourt -S chkrootkit

参考:
http://centossrv.com/chkrootkit.shtml
http://www.gentoo.org/doc/ja/security/security-handbook.xml?part=1&chap=13

FluidSynth

リアルタイムソフトウェアシンセサイザー。作曲の時に使います。

pacman -S fluidsynth

簡単に fluidsynth を使って MIDI ファイルを再生することができます:

$ fluidsynth -a alsa -m alsa_seq -l -i /usr/share/soundfonts/fluidr3/FluidR3GM.SF2 example.midi

参考:https://wiki.archlinux.org/index.php/FluidSynth

sox

SoX は広く利用されているほとんどの形式の音声ファイルの読み取りと書き出し, およびオプションでそれらにエフェクトを適用することができる

$ pacman -S sox

参考:
http://www.hcn.zaq.ne.jp/___/unix/sox-ja.html
http://superuser.com/questions/627608/how-to-extract-vocals-from-music-using-a-command-line-software