まず このようなもの
lx:~# find / | grep -v -e ^/proc -e ^/tmp -e ^/dev > 001_preinstall.list lx:~# touch INSTALL-FILE /* 実際にインストールする作業の 代りに ファイルを作成 */ lx:~# find / | grep -v -e ^/proc -e ^/tmp -e ^/dev > 002_postinstall.list lx:~# diff -s 001_preinstall.list 002_postinstall.list >003_installed.list
ほたら
# cat 003_installed.list 22938a22939,22940 > /root/INSTALL-FILE > /root/002_postinstall.list /* 最後の1個は 不用である */
from :http://web.kyoto-inet.or.jp/people/jeanne/linux/linuxtips.html#17
# touch /tmp/mark ; sleep 1 # make install # find /etc /sbin /lib /usr /var -cnewer /tmp/mark ! -type d -print >/tmp/files # tar -T /tmp/files -czf PACKAGENAME.tgz
にゃんたろう 拝!
2006年 1月30日 (月) 20:14:54 JST 作成