揮発性のメモ2

http://d.hatena.ne.jp/iww/

CentOS ごみファイル 削除

VirtualBoxにインストールしているとごみは溜まる一方なので手動で消す

#centos6
find /tmp -name "keyring*" -mtime +0 | xargs rm -rf
find /tmp -name "virtual*" -mtime +0 | xargs rm -rf

#centos7
find /tmp -name "systemd*" -mtime +0 | xargs rm -rf