Yukiharu YABUKI の tDiary
このtDiaryを検索します。
2004-08-21
_ すずしい
今晩は,涼しくて快く作業ができる.
_ Casa de los babys
TVの情報番組でたまたま紹介していた.(http://www.imdb.com/title/tt0303830/) User Ratingは6.6か.
_ pthread ML
安倍せんせい, pthread MLも主催してはったのか. pthread ML(http://www.media.osaka-cu.ac.jp/~k-abe/ML/pthread.html)
_ 大阪,阿倍野の名物おばあちゃん
_ ガザット大阪
文字だけのレストランガイド. 表紙をオーダできるということなので贈り物につかうらしいが,ほんと?
2008-08-21
_ Debian で sysctl のソースが見たくなったら、どうするのか。
まずは、sysctl がどのパッケージに属しているのか確認します。dpkg -S sysctl | grep bindpkg -S の出力は、属するパッケージ名と、パス付きファイル名であるので、求めている sysctl はコマンドなんで、grep で bin を指定してみた。これだと、/bin /sbin /usr/bin /usr/sbin などがカバーできるし。
dpkg -S sysctl | grep bin procps: /sbin/sysctl結果により、procps パッケージに属していることがわかったので、apt-get source procsps して、ソースを取得する。下記のような感じ。
yabuki@Ernalda:~/src/deb-package/procps$ apt-get source procps パッケージリストを読み込んでいます... 完了 依存関係ツリーを作成しています... 完了 331kB のソースアーカイブを取得する必要があります。 取得:1 http://ftp.debian.org unstable/main procps 1:3.2.7-9 (dsc) [986B] 取得:2 http://ftp.debian.org unstable/main procps 1:3.2.7-9 (tar) [282kB] 取得:3 http://ftp.debian.org unstable/main procps 1:3.2.7-9 (diff) [47.8kB] 331kB を 2s で取得しました (158kB/s) dpkg-source: extracting procps in procps-3.2.7 dpkg-source: unpacking procps_3.2.7.orig.tar.gz dpkg-source: applying ./procps_3.2.7-9.diff.gzすると、
yabuki@Ernalda:~/src/deb-package/procps$ ls -la 合計 344 drwxr-sr-x 3 yabuki yabuki 4096 2008-08-21 10:16 . drwxr-sr-x 36 yabuki yabuki 4096 2008-08-21 10:16 .. drwxr-xr-x 5 yabuki yabuki 4096 2008-08-21 10:16 procps-3.2.7 -rw-r--r-- 1 yabuki yabuki 47775 2008-08-10 11:02 procps_3.2.7-9.diff.gz -rw-r--r-- 1 yabuki yabuki 986 2008-08-10 11:02 procps_3.2.7-9.dsc -rw-r--r-- 1 yabuki yabuki 281965 2006-06-27 08:17 procps_3.2.7.orig.tar.gzな状態になっているので、cd procps-3.2.7 してから、ls すると、
yabuki@Ernalda:~/src/deb-package/procps/procps-3.2.7$ ls AUTHORS dummy.c procps.lsm sysctl.c v BUGS free.1 procps.spec sysctl.conf vmstat.8 COPYING free.c ps sysctl.conf.5 vmstat.c COPYING.LIB kill.1 pwdx.1 t w.1 CodingStyle minimal.c pwdx.c tload.1 w.c Makefile pgrep.1 skill.1 tload.c watch.1 NEWS pgrep.c skill.c top.1 watch.c README pkill.1 slabtop.1 top.c README.top pmap.1 slabtop.c top.h TODO pmap.c snice.1 uptime.1 debian proc sysctl.8 uptime.cってな感じ。目的の sysctl.c を発見しました。
_ pwdx
あるプロセスのカレントディレクトリを知りたかったら、procps に入っている pwdx プロセス番号 で調べる事ができる。ただし、pwdx を実行するユーザが、その調べるプロセスのオーナーでない場合$ pwdx 1 1: Permission deniedという風におこられる。
sudo pwdx 1 Password: 1: /のように、特権を使えばok。ちなみに、pid が 1 のプロセスは init である。普通の例は、
ps auxw | grep bashなどでログインシェルの pid を引っ張って来て、試してみると良い。
$ pwdx 4088 4088: /home/yabukiのような結果が得られる事だろう。
_ pmap
$ ps auxw | grep bash | head -1 yabuki 4088 0.0 0.0 5800 240 pts/0 Ss Aug20 0:00 bash $ pmap 4088 4088: bash 08048000 644K r-x-- /bin/bash 080e9000 24K rw--- /bin/bash 080ef000 716K rw--- [ anon ] b7b09000 36K r-x-- /lib/tls/i686/cmov/libnss_files-2.3.6.so b7b12000 8K rw--- /lib/tls/i686/cmov/libnss_files-2.3.6.so b7b14000 32K r-x-- /lib/tls/i686/cmov/libnss_nis-2.3.6.so b7b1c000 8K rw--- /lib/tls/i686/cmov/libnss_nis-2.3.6.so b7b1e000 72K r-x-- /lib/tls/i686/cmov/libnsl-2.3.6.so b7b30000 8K rw--- /lib/tls/i686/cmov/libnsl-2.3.6.so b7b32000 8K rw--- [ anon ] b7b34000 28K r-x-- /lib/tls/i686/cmov/libnss_compat-2.3.6.so b7b3b000 8K rw--- /lib/tls/i686/cmov/libnss_compat-2.3.6.so b7b3d000 440K r---- /usr/lib/locale/locale-archive b7bab000 2048K r---- /usr/lib/locale/locale-archive b7dab000 4K rw--- [ anon ] b7dac000 1180K r-x-- /lib/tls/i686/cmov/libc-2.3.6.so b7ed3000 20K r---- /lib/tls/i686/cmov/libc-2.3.6.so b7ed8000 8K rw--- /lib/tls/i686/cmov/libc-2.3.6.so b7eda000 16K rw--- [ anon ] b7ede000 8K r-x-- /lib/tls/i686/cmov/libdl-2.3.6.so b7ee0000 8K rw--- /lib/tls/i686/cmov/libdl-2.3.6.so b7ee2000 224K r-x-- /lib/libncurses.so.5.5 b7f1a000 32K rw--- /lib/libncurses.so.5.5 b7f22000 4K rw--- [ anon ] b7f2f000 24K r--s- /usr/lib/gconv/gconv-modules.cache b7f35000 8K rw--- [ anon ] b7f37000 4K r-x-- [ anon ] b7f38000 84K r-x-- /lib/ld-2.3.6.so b7f4d000 8K rw--- /lib/ld-2.3.6.so bfb11000 88K rw--- [ stack ] total 5800K
_ monit
本家は、(http://www.tildeslash.com/monit/) Barking at daemons というフレーズから、犬のイメージは番犬くんからか。良いイメージ戦略ですね。Web の 方は、ありがたいことに日本語で読める。(http://packages.debian.org/ja/etch/monit) 以下は、etch で monit の情報を取得した結果である。$ apt-cache show monit Package: monit Priority: optional Section: admin Installed-Size: 664 Maintainer: Stefan Alfredsson < alfs@debian.org > Architecture: i386 Version: 1:4.8.1-2.1 Depends: libc6 (>= 2.3.6-6), libssl0.9.8 (>= 0.9.8c-1) Filename: pool/main/m/monit/monit_4.8.1-2.1_i386.deb Size: 254726 MD5sum: 626ad3e4922d6aaafa3e9d875fed652a SHA1: 46d5774046246ffb67364f6d4e909e2ad624775a SHA256: 950a9e4f89a7365928bf05b7b474ef240eed8f12604aae422819a5dafc7c8d76 Description: A utility for monitoring and managing daemons or similar programs monit is a utility for monitoring and managing daemons or similar programs running on a Unix system. It will start specified programs if they are not running and restart programs not responding. . monit supports: * Daemon mode - poll programs at a specified interval * Monitoring modes - active, passive or manual * Start, stop and restart of programs * Group and manage groups of programs * Process dependency definition * Logging to syslog or own logfile * Configuration - comprehensive controlfile * Runtime and TCP/IP port checking (tcp and udp) * SSL support for port checking * Unix domain socket checking * Process status and process timeout * Process cpu usage * Process memory usage * Process zombie check * Check the systems load average * Check a file or directory timestamp * Alert, stop or restart a process based on its characteristics * MD5 checksum for programs started and stopped by monit * Alert notification for program timeout, restart, checksum, stop resource and timestamp error * Flexible and customizable email alert messages * Protocol verification. HTTP, FTP, SMTP, POP, IMAP, NNTP, SSH, DWP, LDAPv2 and LDAPv3 * An http interface with optional SSL support to make monit accessible from a webbrowser Tag: admin::monitoring, interface::daemon, network::hiavailability, network::server, role::program, use::monitor , works-with::software:running
2009-08-21
_ [WebApp] memo:ブラウザを選ばずWebテストを自動化するSelenium
Railsやmemo:Seleniumの続き。岡本さんが Selenium の記事を書かれた。(http://www.atmarkit.co.jp/fjava/rensai4/devtool07/devtool07_1.html)
Web業界は大変なことになっているので基本的にWeb単体の仕事を継続的にやっていくなら、関わる人間が少なくて品質の良いモノを作る取り組みが必要なので、その一環となるのであろう。
_ [LaTeX] memo:「TeXユーザの集い 2009」8月29日開催! 直前レポート
楽しそうなんですが、関西在住としては残念です。「TeXユーザの集い 2009」8月29日開催! 直前レポート(http://gihyo.jp/news/report/2009/08/2001)
_ infoseek マルチ 翻訳
(http://translation.infoseek.co.jp/)ですが、この翻訳サイトには「関西弁」オプションがあります。この関西弁、関西人である私が聞いてけっこうもだえる様な言葉遣いをしてくれます。ただ、"you are idiot."は標準語と関西弁のニュアンスを正しく反映しているようです。でも、「あんさん」はないで...
_ 失敗するのは理由があるけど、成功するのは運なんだなあ
切り込み隊長のこの記事は Web 2.0 の話がメインなので、ここだけならgoogleとの関連は薄い(http://zasshi.news.yahoo.co.jp/article?a=20090814-00000001-voice-pol)で、タイムマシン経営っていう言葉が出てきたから何かと調べてみたら、先進国でうまくいっているモデルを輸入して日本で広めるというパターンの経営だそうだ。世間で認知されている成功例として孫正義氏の Yahoo Japan だそうである。
孫氏はほかにもタイムマシン経営で、成功パターンを踏襲したとおもうのだが、Yahoo Japan 以外の例を寡聞して知らない。
まじめにタイムマシン経営を検討するなら、成功率なんかもいまだとある程度わかるのかな。(http://premium.nikkeibp.co.jp/bits/bits_column/column_d14_01.shtml)のようなコンサルタント屋さんはそのあたりの数字を押さえているのでしょうねえ。
_ HandBrake
Linuxでも使えるとのこと。(http://www.katch.ne.jp/~kakonacl/douga/yadex_handbrake/handbrake.html)および、本家は(http://handbrake.fr/)
_ BD(Blu-ray Disc)が徐々に普及
DVDのあとのバックアップメディアとしてBDに注目している。値段だけじゃなくて、メディアの耐久性とかデータを預けるわけだから、急いで自分でデータを取るか、他人の知見をきいてから参入するという手もある。初期先行のうまみはないが、初期投資のコストを抑えることができるし、ノウハウを獲得する時間が少なくて済む可能性が大きい
バッファロー、最大10倍速記録可能なBDドライブ2モデル --- 35,490円のeSATA/USB型と29,925円の内蔵型(http://av.watch.impress.co.jp/docs/news/20090819_309407.html)いつが買い時なのかはいろいろと悩む
_ man quotacheck
[Debian]rpc.rquotadの続きです。最近、CentOS 5.3のquotaを設定する機会があり、man quotacheck してみたら、私の書いた touch quota.user quota.group は、やってもいいけど、ファイルが存在しない場合は、quotacheck が作ってくるようです。ファイル名が[a]quota.userと[a]quota.groupになるとのこと。ちなみに、aquota.user/aquota.groupはversion 2とのこと quota.uesr/quota.groupはversion 1とのこと。もDebian GNU/Linux Lenny でも同じ man 内容でした。
もう、主流はaquota.(user|group)なんですねえ。
_ ORCAがプラットホームを Debian GNU/Linux から Ubuntu LTS へ移行
ニュースソースは、(http://www.orca.med.or.jp/receipt/outline/schedule/index.rhtml)業務系サポートだと、Debian のリリースサイクルでも短いのですな。Ubuntu LTS のサポート内容と実績はどこでみるのがいいだろうか。
2012-08-21
_ [Debian] wheezy で sphinx の環境を作る。
次にリリースされるであろう、Debian GNU/Linux の wheezy をつかって、事前に試して後で困らないようにしないとね
ってことで、まずはkvmにwheezyのinstallerをダウンロードしてきて、セットアップ。ここでは、デフォルトばかり選んだので簡単にスルー
desktop-environmentをいれると、uim-anthyが入る。まではチェックした。追加でapt-get install ibus-mozc を要望によりいれておく。
すっかり忘れていたが、ibus-setupでibusに、どの変換エンジンを使うか教えておいてあげないといかん。
apt-get python-sphinx と texlive, texlive-cjk あたりを入れた気がする
sphinx-quickstartを実行して、conf.pyとか作ってmakeコマンドを打ったときに、makeコマンドが無いことに気がついて、makeだけではなく、build-essential をいれることにした。どうせビルドするのでハードディスクの肥やしにはしないのです。
makeを実行すると、使える(makeの)ターゲット一覧がでるので、source/index.rstを編集し、自分で追加したintro.rstを書いて
make htmlとするもエラー
原因は、siteconfig.pyにエンコードの指定が無いことらしい。入力がUTF-8なのでpyhonが認識しているエンコードがus-asciiという始末。これは切り分けて bts なのだろうが、どこの責任なんだろうか
上記を上手くやると、make htmlで、UTF-8で日本語を入力して、Webでそれを読むことができます。
_ Vitalboxで、vmdkのイメージを動かす。
Virtalboxをダウンロードして、GUIでvmdkからvboxへの変換メニューをずっと探していたわけですが、そのようにしてvirutalboxで、vmdkのイメージを動かすのではなく、新規VM作成時に、元になるVMにvmdkを指定すべきだったのですね。
kvm-img(as qemu-img)コマンドのconvert で色々と試行錯誤してしまいましたよ。
_ n_saito [apt-get install dlocate dlocate bin/sysctl (ぼそ]
_ yabuki [別解で、apt-file search や、auto-aptもいかがというフィードバックは別の場所でもらいました。 ..]