Raspberry Backup
备份 http://www.raspberry-asterisk.org/documentation/backup-your-system/ 先挂载一个足够大的u盘,
df -hl
mount /dev/sda[x] /mnt
raspbx-backup
根据提示输入即可。输入备份文件目录及文件名* .img
退出挂载
umount /dev/sda[x]
使用以下挂载命令,可以实现普通用户挂载可读写!fmask指定普通文件权限,dmask指定目录权限。
mount -t vfat -o fmask=0011,dmask=0000 /dev/sda /mnt/usb
Raspberry 3G USB dongle 上网
本次实验成功的3G modem型号为:huawei E176G(3G上网)
1.参考地址: https://www.raspberrypi.com.tw/771/how-to-setup-a-usb-3g-modem-on-raspberry-pi/
2.参考地址2: https://www.thefanclub.co.za/how-to/how-setup-usb-3g-modem-raspberry-pi-using-usbmodeswitch-and-wvdial
3.参考地址3: freepbx安装sik8编码:http://www.raspberry-asterisk.org/faq/#silk
4. freepbx安装参考地址:http://blog.csdn.net/zhang0788/article/details/4711581
RaspberryPi上搭建和配置RasPBX实现VoIP-GSM网关
本次实验成功的usb dongle型号为:huawei E173u-1 (语音通话)
1. 参考地址:http://www.docin.com/p-1145393406.html?qq-pf-to=pcqq.c2c
2. 参考地址2:http://www.telecom-cafe.com/forum/viewthread.php?tid=3555
RaspberryPi上 Apache启动失败可能是SD卡文件系统出错
修复参考页面:http://askubuntu.com/questions/647527/file-system-has-become-read-only-after-updating-to-15-04
fsck -y -A -f
參數說明:
A: 依據/etc/fstab 的設定,檢查所有檔案系統的完整性。
a: 自動修復檔案系統。
y: 在修復時,fsck可能會詢問您是否要採取某一個動作。-y是用來告訴fsck不用再問了,直接yes。
f: 即使檔案系統的狀態是乾淨的,也要強制檢查檔案系統。
fsck /
从根目录开始检测
Raspberry USB modem send ussd
参考地址1:http://askubuntu.com/questions/391320/balance-of-gsm-usb-modem-using-ussd
参考地址2:https://techconquest.wordpress.com/tag/gsm-ussd/
树莓派ubuntu mate
参考地址:http://blog.csdn.net/machh/article/details/51299627
1.刷入系统后只需要调整磁盘空间及安装中文输入法即可;
2.扩展可用空间
输入sudo fdisk /dev/mmcblk0 后【0 零 ,l小写L】
d 回车
2 回车
n 回车
p 回车
2回车
然后提示first xxxx 这时候按 回车
之后提示Last xxxxx 按回车
最后按w 回车
sudo reboot
重启后 再打开终端输入 sudo resize2fs /dev/mmcblk0p2
sudo reboot
3.安装中文输入法
这里安装的是fcitx的拼音输入法:
sudo apt-get install fcitx fcitx-sunpinyin
sunpinyin是基本的拼音输入,如果需要云词库拼音,也建议安装google拼音和云拼音
sudo apt-get install fcitx-googlepinyin
sudo apt-get install fcitx-module-cloudpinyin
树莓派安装freeswitch,使用dongle 拨打VOIP
1.参考地址:https://freeswitch.org/confluence/display/FREESWITCH/mod_gsmopen#mod_gsmopen-QuickStartGuide
2.参考地址:http://wiki.freeswitch.org/wiki/GSMopen#SHORT_BLUEPRINT:_STEPS_NEEDED_TO_USE_GSMOPEN
网友评论