Do everything with so much love in your heart that you would never want to do it any other way. - Brahma Kumaris

Archive for the 'Linux' Tag

— 空のディレクトリに一括で空ファイル作成するシェルスクリプト

Posted: Dec 26, 2011, 9:52 am | Author: cyberryo | Category: Dialy | Tags: ,

最近のオープンソースプロジェクトだとgitがスタンダードなので気にすることはあまりないのですが、まだSVNで管理されているソースって多いです。空ディレクトリだとgitが認識してくれないので、一括して.gitignore空ファイルで空ディレクトリを埋めてくれるスクリプト。

#!/bin/sh

set -x -e -u
FIND=/usr/bin/find
if [ -x ${FIND} ]; then
    for i in `${FIND} . -type d | egrep -v '\.(svn|git)'`; do
        if [ -z "`/bin/ls $i`" ]; then
            touch $i/.gitignore
        fi;
    done
    exit 0
fi
exit 1

Cakephpとかだとemptyファイルですね。どちらかというと不可視ファイルよりemptyのほうが好きかな…


— [Linux]ディレクトリのみ、ファイルのみにコマンド実行

Posted: Aug 23, 2009, 11:15 am | Author: cyberryo | Category: Dialy | Tags:

パーミッションの変更の際にとても便利。ファイル数が膨大な場合、FTPクライアントでやってるといつまでたっても終わらないのでsshでサクサク。
Read the rest of this entry »


— ubuntuでLVM2をmountする

Posted: Apr 13, 2009, 6:25 pm | Author: cyberryo | Category: Dialy | Tags: , , ,

ubu
長年一生懸命稼働してくれたサーバーが急にクラッシュ!Web周辺は冗長化していたのでなんともありませんでしたが、いろいろとローカルファイルでなくなっては困りそうな物があったのでHDDの中身を救出。
Read the rest of this entry »


— 【Linux】ソースからビルドしたDovecotが起動しない

Posted: Aug 4, 2008, 1:13 am | Author: cyberryo | Category: Dialy | Tags: ,


SRPMからビルドしたdovecotが起動しないところでスッゲェハマった。。
Read the rest of this entry »


— Linuxサーバー(fedora)にwebカメラつなげてライブカメラする

Posted: Jun 9, 2008, 1:10 pm | Author: cyberryo | Category: Dialy | Tags: ,


CUIの環境からWebカメラでライブ配信したい。って思っていろいろやってみた。
Read the rest of this entry »