以前用的是Ubuntu9.0.4,裝DB2 v9.5非常輕松,一路下去,什麼問題也沒有。
這次情況不妙,Ubuntu升級到10.04以後,缺了libstdc++.so.5,系統中只有.so.6,
使用apt-get intall libstdc++5,也找不到安裝包。無奈,只能在網上苦苦搜索,找了半天也沒找到可下載的源。
最後在http://ishare.iask.sina.com.cn/f/14409917.html?retcode=0 上找到一個。
再補充後邊的幾個步驟:
1. dpkg -x libstdc++5_3.3.6-10_i386.deb libstdc++5
cd libstdc++5/usr/lib
mv * /usr/lib
結果如下:
root@linux11:/usr/lib# ls -al libstdc++*
lrwxrwxrwx 1 root root 18 2010-12-09 11:54 libstdc++.so.5 -> libstdc++.so.5.0.7
-rw-r--r-- 1 root root 737496 2005-10-26 20:25 libstdc++.so.5.0.7
lrwxrwxrwx 1 root root 19 2010-11-26 00:02 libstdc++.so.6 -> libstdc++.so.6.0.14
-rw-r--r-- 1 root root 930044 2010-09-28 05:01 libstdc++.so.6.0.14
補充安裝gcc-3.3-base和openssh, rsh-server:
wget -c http://up.2cto.com/2012/0312/20120312102512573.rar
dpkg -i gcc-3.3-base_3.3.6-15ubuntu4_i386.deb
apt-get install openssh-server
export DB2USELOCALJRE=yes
3. 運行db2setup開始安裝,選擇install a Product,進入DB2 Setup Wizard
後邊基本上不會碰到什麼問題。
作者 iihero