| 第一步是在 Linux console 
 groupadd -g 18 asterisk
 useradd -u 18 -g 18 -d /var/lib/asterisk -s /sbin/nologin asterisk
 
 第二步跟這網頁安裝
 http://www.asterisk.org/downloads/yum
 
 不過就唔好裝asterisk-gui
 
 第三步是手動裝asterisk-gui
 
 svn checkout http://svn.digium.com/svn/asterisk-gui/branches/2.0/
 cd 2.0
 make
 make install
 make configcheck
 
 最後
 chkconfig dahdi on
 service dahdi start
 service asterisk start
 asterisk -vvvr
 
 就是這樣一套基本asterisk 就安裝好
 
 用 browser 進入 http://yourip:8088/static/config/index.html for configuration
 |