2014-10-01から1ヶ月間の記事一覧

scpコマンドメモ

アップロード $ scp -P 10000 hogehoge.tar hoge@xxx.xxx.xxx.xxx:scp_dest -- ダウンロード $ scp -P 10000 -r hogehoge@xxx.xxx.xxx.xxx:scp_dest/push/* ~/scp_dest/receive

CPU や HDD の型番情報を表示する

CPU の種類や情報 # cat /proc/cpuinfo processor : 0 vendor_id : AuthenticAMD cpu family : 15 model : 44 model name : AMD Sempron(tm) Processor 2800+ stepping : 2 cpu MHz : 1599.847 cache size : 256 KB …… cpu数が知りたい場合は $ cat /proc/cp…

.gitignoreの反映

git rm -r --cached . git add . -A git commit -m ".gitignoreファイルを反映。"