]
トップ «前の日記(2005-03-28) 最新 次の日記(2005-03-30)» 編集

Yukiharu YABUKI の tDiary



このtDiaryを検索します。

2005-03-29 [長年日記]

_ 天気

_ [DPiS] mapserver-bin - mapserver binary utilitys

binary utilitys for using mapserver with the command line.

MapServer is an OpenSource development environment for building spatially enabled Internet applications.

The MapServer system includes MapScript that allows popular scripting languages such as :

  • PHP provided by php4-mapscript.
  • Python provided by python-mapscript.
  • Perl provided by perl-mapscript.
  • Java not provided actualy by those packages.

Mapserver template language, WFS, WMS, WCS are provided by cgi-mapserver.

Visit http://mapserver.gis.umn.edu/index.html for more information.

_ [Debian] YaST2 install

依存関係ツリーを作成しています... 完了    
以下のパッケージが新たにインストールされます:
  libslp1 libxcrypt1 yast2 yast2-core yast2-ncurses yast2-packagemanager yast2-testsuite
以下のパッケージはアップグレードされます:
  ash aspell aspell-bin dash gworldclock libaspell15 libbcel-java libc-client-dev libc-client2002edebian libieee1284-3
  libieee1284-3-dev libimlib2 libjdepend-java librpm4 libxml2 libxml2-dev libxml2-utils mlock rpm vim vim-common vim-gtk
アップグレード: 22 個、新規インストール: 7 個、削除: 0 個、保留: 2 個。
20.0MB のアーカイブを取得する必要があります。
展開後に追加で 58.9MB のディスク容量が消費されます。
続行しますか? [Y/n] 
取得:1 http://ftp.jp.debian.org unstable/main libslp1 1.0.11a-2 [47.3kB]
取得:2 http://ftp.jp.debian.org unstable/main libxcrypt1 2.2-1 [29.4kB]
取得:3 http://ftp.debian.org unstable/main ash 0.5.2-3 [14.8kB]
取得:4 http://ftp.debian.org unstable/main dash 0.5.2-3 [82.7kB]
取得:5 http://ftp.debian.org unstable/main vim-gtk 1:6.3-068+2 [715kB]
取得:6 http://yast4debian.alioth.debian.org pool/ rpm 4.1.1-0.1 [1431kB]
取得:7 http://ftp.debian.org unstable/main vim 1:6.3-068+2 [708kB]
取得:8 http://ftp.debian.org unstable/main vim-common 1:6.3-068+2 [3426kB]
取得:9 http://yast4debian.alioth.debian.org pool/ librpm4 4.1.1-0.1 [828kB]
取得:10 http://yast4debian.alioth.debian.org pool/ yast2 2.9.60-0.1 [430kB]
取得:11 http://yast4debian.alioth.debian.org pool/ yast2-core 2.9.79-0.1 [4239kB]
取得:12 http://ftp.debian.org unstable/main libaspell15 0.60.2+20050121-2 [669kB]
取得:13 http://ftp.debian.org unstable/main aspell-bin 0.60.2+20050121-2 [215kB]
取得:14 http://ftp.debian.org unstable/main aspell 0.60.2+20050121-2 [16.6kB]
取得:15 http://ftp.debian.org unstable/main libxml2-dev 2.6.16-6 [591kB]
取得:16 http://ftp.debian.org unstable/main libxml2 2.6.16-6 [602kB]
取得:17 http://ftp.debian.org unstable/main gworldclock 1.4.4-1 [35.0kB]
取得:18 http://ftp.debian.org unstable/main libbcel-java 5.1-4 [465kB]
取得:19 http://ftp.debian.org unstable/main mlock 7:2002edebian1-8 [25.5kB]
取得:20 http://ftp.debian.org unstable/main libc-client-dev 7:2002edebian1-8 [1192kB]
取得:21 http://yast4debian.alioth.debian.org pool/ yast2-ncurses 2.9.20-0.1 [1286kB]
取得:22 http://ftp.debian.org unstable/main libc-client2002edebian 7:2002edebian1-8 [580kB]
取得:23 http://ftp.debian.org unstable/main libieee1284-3-dev 0.2.10-1 [53.5kB]
取得:24 http://ftp.debian.org unstable/main libieee1284-3 0.2.10-1 [27.8kB]
取得:25 http://ftp.debian.org unstable/main libimlib2 1.2.0-2.2 [190kB]
取得:26 http://yast4debian.alioth.debian.org pool/ yast2-packagemanager 2.9.37-0.1 [1854kB]
取得:27 http://ftp.debian.org unstable/main libjdepend-java 2.9-1 [222kB]
取得:28 http://ftp.debian.org unstable/main libxml2-utils 2.6.16-6 [28.0kB]
取得:29 http://yast4debian.alioth.debian.org pool/ yast2-testsuite 2.9.9-0.1 [22.1kB]
20.0MB を 1m14s で取得しました (268kB/s)

_ Memo:http://nazo.yi.org/suggest/

(http://nazo.yi.org/suggest/)

_ [Debian] YaST2 con't.

Hrestol:~# yast2
warning: the ncurses frontend is installed but does not work
You need to install yast2-ncurses to use the YaST2 text mode interface
 
ncursesはversion 5をいれていますが、動きせん。lddの設定が必要っぽい
Hrestol:~# lv /usr/lib/YaST2/bin/yast2-funcs
 
#
# check if the ncurses plugin and all necessary libaries are present
#
function check_ncurses()
{
    get_plugindir
    Y2_NCURSES=$plugindir/libpy2ncurses.so.2
 
    if [ -e "$Y2_NCURSES" ] ; then
        if ! `/usr/bin/ldd "$Y2_NCURSES" | grep --quiet "=> not found"` ; then
            return 0            # success
        fi
        echo "warning: the ncurses frontend is installed but does not work"
        sleep 1
    fi
 
    return 1                    # failure
}
たぶん、これっぽい。

_ あ.そうだ

そろそろ,あびこの「あずま寿し」が移転をおわって再開しているころか.

_ おひる

4人(社長,秋山,谷,矢吹)で,居酒屋日本にて,定食をチョイス.