FTPクライアントでファイル一覧が表示されない

管理しているサーバに「FFFTPからアクセスすると中身が見えない」と報告があった。 ログをもらうとログイン、ファイル一覧の取得は「226 Transfer complete.」となっていて正常に完了した様子。 ブラウザからFTPプロトコルで接続してみるとファイル名が時刻や年と一緒になった「2007 hoge」のような名前になっている。 取得してきたファイル一覧をうまく解釈できていないよう。 そこで、正常にアクセスできる同環境のftpdとファイル一覧の形式を比べてみた。 問題になっているftpdは -rw-r–r– 1 root wheel 93 3 22 20:27 filename という形式で、正常なftpdは -rw-r–r– 1 root wheel 93 Oct 23 2006 filename という形式になっている。 もっと大胆に崩れているかと思ったけど、月の表示形式が名称の短縮名になっているか否かぐらいしか違いがない。 FTPのLISTコマンドはサーバ側の/bin/ls -lの出力に依存する。 サーバ側でls -lとすると月が数字で表示された。 これを短縮名で表示させるにはどうしたらいいだろうか。 ちょうどIRCで話していた経験者に聞くとローケルによって変わると教えてくれた。 そのときは一般ユーザからsuしたのでLC_ALL=ja_JP.eucJPになっていた。 # unsetenv LC_ALL Continue reading FTPクライアントでファイル一覧が表示されない


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , , , , , | 1 Reply

16進ダンプするコマンド

『16進ダンプする』 では % od -Ax -txC <file> とすると書いたけどhdというコマンドがあった。 % hd <file> で16進ダンプできる。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , | Leave a reply

mailwrapper Segmentation fault (core dumped)

mailqとかnewaliasesとかmailwrapper系のコマンドがコアを吐くので何だろうと思ったら、freebsd-updateで7.2にupgradeしたときに/etc/mail/mailer.confが衝突したのを放置していたからだった。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Leave a reply

[MT4.2] 再構築時にデータベースへの問い合わせにかかる時間

MovableTypeではページの生成に非常に時間がかかる。 mod_perlやFastCGIを導入すればバイトコンパイルにかかる時間分を短縮できるが、再構築は分単位で時間がかかる処理のため、バイトコンパイルにかかる時間は無視できる程度になってあまり効果が出ないと思われる。 『MTからデータベースへのクエリの発行回数を減らす (mt-search.cgiを例にとって)。』ではデータベースへの問い合わせ回数を減らすことでページの生成時間を減らそうとしているが、アムダールの法則で、問い合わせにかかる時間が全体のうちに占める割合で効果が限定される。 自分の環境ではどうだろうかと思ってデータベースへの問い合わせにかかる時間を計ってみることにした。 環境は CPU Celeron 2.0GHz chip set i865G memory PC2700 768MB OS FreeBSD 7.2 DBMS MySQL 5.0.77_1 MovableType 4.2.61 という感じで、ウェブサーバと同じマシンでmysqldを動かしている。 index_page.log インデックスページのみを再構築したときのクエリログは上のようになった。 全体で449クエリ。そのうちSELECTが437クエリ、UPDATEが4クエリ、SETが8クエリ。 次にこのログを元にインデックスページ再構築時と同じクエリ列(query.txt)を作って % time mysql -u root -ppasswd databese < query.txt > /dev/null のようにして問い合わせ時間を計測した。 Continue reading [MT4.2] 再構築時にデータベースへの問い合わせにかかる時間


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , , , | Leave a reply

ftpコマンドで一括転送

ftpコマンドでファイルを一括転送するにはmget、mput、mdel内部コマンドをつかう。 >mget *.html 対話モードでは1ファイルごとにダウンロードするか聞いてくるのでprompt内部コマンドで非対話モードに切り替えておく。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , , | Leave a reply

[FreeBSD] iP4600の設定とPostScriptプリンタ化

Canon Pixus iP4600をFreeBSD鯖につないで設定。 パラレルポートは無いようなのでUSBで接続。 /etc/printcapを設定 iP4600|Canon Pixus iP4600:\ :sd=/var/spool/lpd/iP4600:\ :mx#0:\ :sh:\ :lp=/dev/ulpt0:\ :if=/usr/local/libexec/if-simple:\ :lf=/var/log/lpd-errs: スプールディレクトリ/var/spool/lpd/iP4600を作っておく。 フィルタの/usr/local/libexec/if-simpleは/usr/share/examples/printing/if-simpleにあるのでそこからコピー。 これでsambaのprintingオプションをbsdにしておけばsambaが自動でプリンタを見つけてくれる。 Windows機からCanonのドライバで印刷すればOK。 [FreeBSD-users-jp 91344] Re: 動作 報告 Canon PIXUS MP810 ( スキャナ・プリンタ複 合機) を参考にCanonが出しているCUPS用のフィルタでPostScriptプリンタ化。 http://cweb.canon.jp/drv-upd/bj/other.html#linux から対象機種の機種別パッケージと共通パッケージをとってくる。 rpm2cpio /PATH/TO/cnijfilter-ip4600series-3.00-1.i386.rpm | cpio -ivd rpm2cpio /PATH/TO/cnijfilter-common-3.00-1.i386.rpm | Continue reading [FreeBSD] iP4600の設定とPostScriptプリンタ化


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , , , | Leave a reply

環境変数の一覧表示

環境変数の一覧を出力するにはprintenvコマンドを引数無しで使う。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , , | Leave a reply

FreeBSD 7.2-RELEASE

FreeBSD 7.2-RELEASEが登場。 リリースノート FreeBSD 7.2リリース(マイコミジャーナル) FreeBSD 7.2-RELEASE登場,安定ブランチの最新版 – Jail仮想化機能IPアドレス強化とスーパーページ改善(gihyo.jp) FreeBSD 7.2 注目の新機能(gihyo.jp) 自宅サーバを7.1から7.2にアップグレード。 『FreeBSD 7.1-RELEASE』のときと同じでfreebsd-updateからアップグレードできた。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , | Leave a reply

真のプログラマは “COPY CON PROGRAM.EXE” を使う

コンピュータジョークに 真のプログラマは “COPY CON PROGRAM.EXE” を使う というのがあってすぐに意味が分からなかったのでメモ。 .exeとあるし、copyはDOSコマンドというのは見当が付いた。 残るはprogram.exeとconで「msdos con」と検索で引いてみるとコンソールからの入出力を表すデバイスファイル名らしい。 C:\>copy con file.txt とするとコンソールからの入力がファイルに書き込まれる。 program.exeは対象のファイルということでファイル名に意味はない。 cat > programとするようなもの?


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , | 3 Replies

Emacsのhexl-mode

Emacsのhexl-modeではバッファを16進表示出来る。 ファイルを開いた後、 M-x hexl-mode RET とするとバイナリエディタのような16進表示に切り替わる。 M-x hexl-mode-exit RET またはC-c C-cでテキスト表示に戻る。 ただ、このままカーソルを合わせて入力してもテキストを入力しているときと同じように入力される。 たとえば、aのキーを押したら左側の16進表示の部分には61と入力されたことになる。 16進値をそのまま入力するには、C-M-x RETとする。 これでEmacsをバイナリエディタとして使えるけど、バインディングを変えないと使いにくいかも知れない。


Deprecated: Creation of dynamic property WP_Term::$cat_ID is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 378

Deprecated: Creation of dynamic property WP_Term::$category_count is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 379

Deprecated: Creation of dynamic property WP_Term::$category_description is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 380

Deprecated: Creation of dynamic property WP_Term::$cat_name is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 381

Deprecated: Creation of dynamic property WP_Term::$category_nicename is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 382

Deprecated: Creation of dynamic property WP_Term::$category_parent is deprecated in /usr/home/bugyo/public_html/b-log/wp-includes/category.php on line 383
Posted in コンピュータ | Tagged , | Leave a reply