OSのバージョンは、 Linux version 2.2.16 (root@hoge) (gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)) #28 Thu Jun 21 07:41:45 JST 2001 ディストリビューターは、slackwareで、3,4年前で確かなバージョンは覚えてない、 ちょこちょこバージョンアップはしてるけど、
------------------------------------------- Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, support@mentai.2ch.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request. -----------------------------------
-- CVSupの後継者たちに期待 -- ●CVSup compatible software in C language ttp://www.kbug.gr.jp/~maekawa/cvsup.html ●FreeSync - C++ re-write of John Polstra's CVSup (Planning) ttp://sourceforge.net/projects/freesync/ ●Xdelta - managing delta-compressed storage and network transport (Beta) ttp://sourceforge.net/projects/xdelta/
Emacs21を使っています。 bbdbのインストールを教えてください。 アーカイブを展開後 ./configure --with-emacs=emacs make su して make installしようとしましたがinstallというのは無くて install-pkgしかありません。 その為か分かりませんが
# make install-pkg /bin/rm -f -r /usr/lib/xemacs/site-packages/lisp/bbdb Loading /usr/local/libexec/emacs/21.1/i386--freebsd/fns-21.1.1.el (source)... Done Loading /usr/local/libexec/emacs/21.1/i386--freebsd/fns-21.1.1.el (source)... Optional package bbdb-srv skipped - gnuserv not found Loading /usr/local/libexec/emacs/21.1/i386--freebsd/fns-21.1.1.el (source)... Optional package bbdb-reportmail skipped - reportmail not found /bin/rm -f /usr/lib/xemacs/site-packages/info/bbdb.info* /usr/local/bin/ginstall: cannot create regular file `/usr/lib/xemacs/site-packages/info/': No such file or directory *** Error code 1
Stop in /home/hunga/bbdb-2.34/texinfo. *** Error code 1
>>604 あと、delfate.c の unsigned near max_chain_length; /* To speed up deflation, hash chains are never searched beyond this length. * A higher limit improves compression ratio but degrades the speed. */
local unsigned int max_lazy_match; /* Attempt to find a better match only when the current match is strictly * smaller than this value. This mechanism is used only for compression * levels >= 4. */ あたりのコメントは読んだ?
$ perl -e 'mkdir( "hoge\necho cracked", 0700 );' $ find . -type d | xargs ls -ld ls: ./hoge: No such file or directory ls: echo: No such file or directory ls: cracked: No such file or directory drwx------ 3 giko users 12800 Jan 26 19:20 . Exit 123
shではaliasはできないと思う。 シェル関数にするかスクリプトにするかしないと # ls a.txt b.txt # mymv(){ > for i in *.txt; do mv $i `basename $i .txt`.html; done > } # mymv # ls a.html b.html