年の暮れ明け

大学がふつうに開いている間は卒論の指導に時間をつぎ込んだので、暮れが押し迫って以来、猛烈に忙しいです。というか、大晦日・元旦とふつうに研究室でがりがり作業。日曜からは出張も控えており、その準備がけっこう大変。
そういうわけで、申し訳ないことに年賀状はまだ、一枚も出せてません。でも、今日はちょっと書いたので、その分は明日出します…

Vine-3.2 installation

Since I’ve not finished (actually, not started yet :p ), I still need Linux kernel 2.4 environment for our project’s development. We choose Vine 3.2, and now I’m trying to install it on my VMware fusion.
[ Installer ]
12GB in my first trial was insufficient for my installation 🙁 . So I allocated 32GB for this second trial…
Took “Custom” installation set and selected:
– administration tools
– shells
I’ll install more packages later…
[ Minimal requirements for Xilinx ISE installation ]
added “extras” on /etc/apt/sources.list.
added me on /etc/sudoers
$ sudo apt-get update && apt-get upgrade
$ sudo apt-get install XOrg
$ sudo /sbin/mkinitrd /boot/initrd-2.4.33-0vl0.22 2.4.33-0vl0.22
and some additional stuff for software development & networking.
$ sudo apt-get install gcc-c++ gdb lv subversion rsync ncftp wget readline-devel bison flex
[ Install Xilinx ISE ]
$ sudo mount -t iso9660 /dev/hdc /mnt/cdrom
$ env LD_LIBRARY_PATH=/mnt/cdrom/lib/lin /mnt/cdrom/setup
Also installed 10.1 SP3 + IP Update for 10.1.3
[ boost ]
I think I may need gcc-4.x later, but continue with gcc-3.3 comes with Vine.
$ cd boost_1_37_0
$ ./configure –prefix=/home/yasu/opt
$ make install
$ cd ~/opt/include
$ in -s boost-1_37/boost .
$ cd ~/opt/lib
$ ln -s libboost_regex-gcc33-mt.so libboost_regex.so
$ ln -s libboost_system-gcc33-mt.so libboost_system.so
Yay, I got ReCSiP driver, API and monitor utilities!
[ expat & libSBML ]
$ cd expat-2.0.1
$ ./configure –prefix=/home/yasu/opt
$ make && make install
$ cd libsbml-3.2.0
$ env CPPFLAGS=’-I/home/yasu/opt/include’ LDFLAGS=’-L/home/yasu/opt/lib -Wl,-rpath,/home/yasu/opt/lib’ ./configure –prefix=/home/yasu/opt –with-expat
$ make && make install
Oh, I think everything is working now!