]
トップ «前の日(09-04) 最新 次の日(09-06)» 追記

Yukiharu YABUKI の tDiary



このtDiaryを検索します。

2004-09-05

_ 天気

はれ

_ [DPiS] bacula-director-pgsql - Network backup, recovery and verification (Director daemon)

The Bacula Director service supervises all the backup, restore, verify and archive operations. The system administrator uses the Director to schedule backups and to recover files. The Director can run as a daemon or as a service (i.e. in the foreground)

This version stores Bacula's Catalog in a PostgreSQL server, and thus is suited for largish installations.

kbys さんと Director の検討もする.

_ [DPiS] bacula-wxconsole - Network backup, recovery and verification (Console, Gnome version)

The new WX-Console allows the administrator or user to communicate with the Bacula Director. It provides a graphical interface to the backup/restore operations.

This GUI interface has been designed to ease restore operations as much as possible as compared to the "conventional" console.

_ [Debian] upgrade

devfsdをつかっているとkernelの起動オプションに"devfs=mount"をいれよとのdebconfのメッセージがでている./boot/gurb/menu.lst を編集し,対応した.

_ I got cvs account

Account manager accept proposal account name. I should be reading (http://sysadmin.gnome.org/users/security.html)

_ [Debian] /etc/init.d/module-init-tools

#!/bin/sh -e
 
# Silently exit if the kernel does not support modules or needs modutils.
[ -f /proc/modules ] || exit 0
[ ! -f /proc/ksyms ] || exit 0
[ -x /sbin/depmod ] || exit 0
 
PATH="/sbin:/bin"
 
KVER=$(uname -r)
if [ -w /lib/modules/$KVER/ ]; then
  echo -n "Calculating module dependencies... "
  depmod --quick
  echo "done."
else
  echo "Not running depmod because /lib/modules/$KVER/ is not writeable."
fi
 
if [ -e /etc/modules-$KVER ]; then
  MODULES_FILE=/etc/modules-$KVER
elif [ -e /etc/modules-2.6 ]; then
  MODULES_FILE=/etc/modules-2.6
else
  MODULES_FILE=/etc/modules
fi
 
# Loop over every line in /etc/modules.
echo 'Loading modules...'
grep '^[^#]' $MODULES_FILE | \
while read module args; do
  [ "$module" ] || continue
  echo "    $module"
  modprobe $module $args || true
done
echo "All modules loaded."
 
# Just in case a sysadmin prefers generic symbolic links in
# /lib/modules/boot for boot time modules we will load these modules.
boot="$(modprobe --list --type boot)"
for d in $boot; do
    mod="${d##*/}"
    mod="${mod%.ko}"
    modprobe "$mod"
done
exit 0

_ I went to kobe.

神戸へ. フォーマル度数の高い黒のストレートチップをget. 神戸のドイツ料理屋さんのGGCにて、AGWの方々が宴会している所へ参加した. この時に一回目の地震を感じた. その後、移動して神戸のアレゲエリアをひさびさに一緒に見た. 地震があったので会社へよって無事を確認. 帰宅する.

_ Earthquake

家で靴を磨いていたら, 本日,2回地震に合う. うーん, 神戸の震災の記憶がよみがえる. TVの情報などをみると、震度3ぐらいらしいのだが.


2006-09-05

_ 荷物見付かる

朝にホテルに届いていた。万歳。

_ IFA

MotololaのGSM携帯であるレイザーや、中国が別の場所で似た製品をだしていたり。韓国のハンディーターミナルのメーカの所ちょっと面白い経験をしたり。いまって普通にハンディターミナルに電子マネー(Felica)の対応をしているみたいです。ハイエンドのデジカメの人たちが欲しいであろう、大容量の書き込みおよび読み込みが既存のメディアよりも早いのも出てました。四角形で方向が関係なく、ユーザーは裏表だけ気をつければ良い。


2008-09-05

_ FbTerm

memo:X不要で動作する高機能ターミナルエミュレータFbTerm の続き。 武藤さんも記事にしているFBTerm(http://kmuto.jp/d/index.cgi/debian/fbterm.htm)

早さは正義だとすると、画面描画が早い fb 上で動くアプリケーションが増えるだろうなあ。


2009-09-05

_ lost+found

CD-RやDVD-Rの整理、中身をチェックしてテプラでタイトルをつくり張っていく地道な作業。とはいえ、すぐに欲しい情報を取り出すための下準備、2度手間なので、作ったときにやっておくのが一番早いな。

探していた FreeBSD ベースのディスク消去プログラムなど発見した。

_ memo:GNU moe

「GNU 萌え」ではない。テキストエディタである。(http://freshmeat.net/projects/moe)

_ [Benchmark] Linuxファイルシステムベンチマーク 第2回

kinnnekoさんのところ経由bonnie++を使っているなあ。そういえば、Bonnie++って、パラメータ(たしかconfigure.in)を書き換えないと最近のディスクでは正確な値がでなかったような。ちゃんと触れてある。Debian packageでもrebuildすればいいんだけどね。よく読んで作業すれば追試できますね。 Linuxファイルシステムベンチマーク 第2回(http://plaza18.mbn.or.jp/~moriban/linux/FileSystemBenchmarkResults-02.html)


2019-09-05 working for Debian

_ [Debian] source only upload

souce only uploadするのに gbp + cowbuilderを使っている私は、debian wikiを参照して、--git-pbuider-options=--source-only-changesを設定した。いろいろとコミット済みだったので、--git-tagをつけた。  xzでuploadすると怒られたので、--git-commpression=gzipにして、オリジナルと同じ圧縮方式にした。--git-retagで再ビルドを指示した。
gbp buildpackage --git-pbuilder --git-pbuilder-options=--source-only-changes --git-tag --git-notify=auto --git-compression=gzip --git-retag
 
これで、dputして accept されるといいな。って思った。こんな感じ。
drwxr-xr-x 1 yabuki yabuki      94  9月  5 15:50 vim-voom
-rw-r--r-- 1 yabuki yabuki    5432  9月  5 18:10 vim-voom_5.3-3.debian.tar.xz
-rw-r--r-- 1 yabuki yabuki    1804  9月  5 18:10 vim-voom_5.3-3.dsc
-rw-r--r-- 1 yabuki yabuki   99568  9月  5 18:10 vim-voom_5.3-3_all.deb
-rw-r--r-- 1 yabuki yabuki   21173  9月  5 18:10 vim-voom_5.3-3_amd64.build
-rw-r--r-- 1 yabuki yabuki    5461  9月  5 18:10 vim-voom_5.3-3_amd64.buildinfo
-rw-r--r-- 1 yabuki yabuki    2458  9月  5 18:10 vim-voom_5.3-3_amd64.changes
-rw-r--r-- 1 yabuki yabuki     446  9月  5 18:17 vim-voom_5.3-3_amd64.ftp-master.upload
-rw-r--r-- 1 yabuki yabuki    1227  9月  5 18:10 vim-voom_5.3-3_source.changes
-rw-r--r-- 1 yabuki yabuki  115854  9月  5 18:00 vim-voom_5.3.orig.tar.gz

_ [Git] git push --all --tags

これは、ダメ。stack overflowの記事 をみて、cloneしてきた、.git/configに
[remote "origin"]
  push = refs/heads/*
  push = refs/tags/*
を書き込んで同じようにやった。