返回列表 發帖

【角色茶桌】—— Seagate DockStar安装Asterisk之路

本帖最後由 角色 於 2012-1-7 15:34 編輯

因为有member想安装Asterisk 1.8在Seagate DockStar上,因为在远方腾出Linux系统,看看是否能否装成功。

第一就是安装ipkg,找了很久才发现可以用下面的方法: http://www.optware-project.org/index.php?title=Main_Page
  1. # feed=http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable
  2. # ipk_name=`wget -qO- $feed/Packages | awk '/^Filename: ipkg-opt/ {print $2}'`
  3. # wget $feed/$ipk_name
  4. # tar -xOvzf $ipk_name ./data.tar.gz | tar -C / -xzvf -
  5. # mkdir -p /opt/etc/ipkg
  6. # echo "src cross $feed" > /opt/etc/ipkg/feeds.conf
  7. # export PATH=/opt/bin:$PATH
複製代碼

有了Optware的ipkg后,下一步就是安装要compile Asterisk的Toolchain了。

角色

TOP

测试一下ipkg是否可以找到gcc
  1. [root@alarm ~]# ipkg list | grep gcc
  2. gcc - 4.2.3-1 - The GNU Compiler Collection.
複製代碼

TOP

There are some problem in the compilation because the kernel and the toolchain may not be compatible.

YH

TOP

其实现在有点问题,就是Kernel用的library,与ipkg的gcc要用的library有出入。。。

角色

TOP

返回列表