返回列表 發帖
你的asterisk 曾否更新?

有機會是 asterisk 和chan_dongle 不配合。

TOP

回復 296# orangelau

你可以試試下載今天發佈的版本。
Asterisk & Chan_Dongle 同步更新

TOP

回復 299# orangelau

更新了 asterisk 到最新版本和 chan_dongle同步再 compile

跟據我的經驗, chan_dongle運行會比較穩定。

其它是一般系統更新

TOP

回復 301# orangelau


    理論上是對。

TOP

回復 303# orangelau


我沒有使用這些功能,等有空試下。

chan_dongle ok?

TOP

你是經常有多人使用?

你的情況似CPU 應付不來

TOP

本帖最後由 ckleea 於 2014-5-31 08:31 編輯

為你的Raspberrypi Image 加入 Google Cloud Printing,原先已有 Air Print
用root ssh login 後
1. ,輸入下指令
  1. sudo apt-get install build-essential python-dev libcups2-dev python-pip
  2. pip install cloudprint pycups
複製代碼
2. 然後建立
sudo nano /etc/init.d/gcloudprint
  1. #! /bin/bash
  2. # /etc/init.d/gcloudprint

  3. ### BEGIN INIT INFO
  4. # Provides:        cloudprint
  5. # Required-Start:    $remote_fs $syslog
  6. # Required-Stop:    $remote_fs $syslog
  7. # Default-Start:    2 3 4 5
  8. # Default-Stop:        0 1 6
  9. # Short-Description:    System service to run cloud print connector
  10. # Description:        System service to run cloud print connector
  11. ### END INIT INFO

  12. # Carry out start/stop/restart actions
  13. case "$1" in
  14.     start)
  15.         echo "Starting cloud print connector"
  16.         cloudprint >> /var/log/cloudprint.log &
  17.         ;;
  18.     stop)
  19.         echo "Stopping cloud print connector"
  20.         killall cloudprint
  21.         ;;
  22.     restart)
  23.         echo "Restart connector"
  24.         echo "Stopping cloud print connector"
  25.         killall cloudprint
  26.         echo "Starting cloud print connector"
  27.         cloudprint >> /var/log/cloudprint.log &
  28.         ;;
  29.     *)
  30.         echo "Usage: /etc/init.d/gcloudprint {start|stop|restart}"
  31.         exit 1
  32.         ;;
  33. esac

  34. exit 0
複製代碼
3. 設定 gcloudprint 在boot 機後可自行起動
sudo chmod +x /etc/init.d/gcloudprint
sudo update-rc.d gcloudprint defaults

4. 最後在 command line,輸入 cloudprint想動
然後輸入 google username 和 password,連上你的 google account

5. 如果重設 google account, 在 /root directory 內, delete 這兩個檔案
rm .cloudorintauth
rm .cloudprintauth.sasl

https://www.google.com/cloudprint/#printers

screenshot.31-05-2014 08.18.54.png

Ref: http://dev.shyd.de/2012/01/remot ... google-cloud-print/

Enjoy cloud printing.

TOP

Another site showing similar service

http://atinkerersblog.wordpress. ... -on-a-raspberry-pi/

TOP

本帖最後由 ckleea 於 2015-1-8 22:01 編輯

更新版即將發佈

內容如下
Version 1.8
Last updated on
Raspberry Pi firmware update "version 5abd572e2ed1811283443387af09377b95501c50 Dec 19 2014"
Debian Wheezy OS update to "Linux raspberrypi 3.12.35+ #730 PREEMPT Fri Dec 19 18:31:24 GMT 2014 armv6l GNU/Linux"

Webmin update to 1.730
Softether VPN update to (Ver 4.12, Build 9514, beta) 2014/11/17

Remove Yate and Minisipserver
Add Kamailio 4.01 Sip proxy (optional). Use defaut UDP 5060 port; not configure

Asterisk update to latest SVN r403917
1. Add CDR logging to mySQL (cdr_odbc.conf)
2. Add Realtime SIP/IAX users for Asterisk (res_odbc.conf, extconfig.conf, modules.conf)
3. Add cron job to check CMPhone drop registration (/opt/scripts/asterisk.sh)
4. Update chan_dongle to match asterisk update
5. Change default asterisk sip accounts from 1000 and 1001 to 2000 and 2001
6. Use UDP 65060 as sip port. Change to other port in sip.conf

TOP

本帖最後由 ckleea 於 2015-1-11 16:52 編輯

Beta version 其實已經可以下載

Be careful to test out asterisk by replacing your own config files

My suggestion is to create a new set of config files by APL or GUI

Remember the default port is 65060.

SIP Port 5060 is not using at the moment

TOP

回復 315# orangelau

Please check the link

TOP

If one has problem on using wifi access point, please go to here to download

http://adafruit-download.s3.amaz ... t_hostapd_14128.zip

copy hostapd to /usr/sbin
chmod a+x /usr/sbin/hostapd
service hostapd restart

should have no more error

TOP

更新:Image 會在中午前發放

Version 1.8
Last updated on 2015/01/17 08:00
Firmware and Linux -
1.Raspberry Pi firmware update "Jan 14 2015 20:00:49 version 83418eb035b8cb762e7d1bf5fb10c09ecf258a04 (clean) (release)"
2. Debian Wheezy OS update to "Linux raspberrypi  3.12.36+ #737 PREEMPT Wed Jan 14 19:40:07 GMT 2015 armv6l GNU/Linux"

System tools -
1. Webmin update to 1.730
2. Softether VPN update to (Ver 4.12, Build 9514, beta) 2014/11/17
3. Fix hostapd for default wifi hotspot support - to enable support wireless driver=rtl871xdrv

Software -
1. Remove Yate and Minisipserver
2. Add Kamailio 4.01 Sip proxy (optional). Use defaut UDP 5060 port; not configure; disable on boot

Asterisk update to latest SVN r403917
1. Add CDR logging to mySQL (cdr_odbc.conf)
2. Add Realtime SIP/IAX users for Asterisk (res_odbc.conf, extconfig.conf, modules.conf)
3. Add cron job to check CMPhone drop registration (/opt/scripts/asterisk.sh)
4. Update chan_dongle to match asterisk update
5. Change default asterisk sip accounts from 1000 and 1001 to 2000 and 2001
6. Use UDP 65060 as sip port. Change to other port in sip.conf

TOP

TOP

回復 321# orangelau


    理论上,应该可以

TOP

返回列表