사용가능한 Python 모듈들을 알아보기 위해 python 인터프리터에서 전체 모듈보기 명령어를 입력했는데, 다음과 같은 오류 메시지를 확인했다. pchero@MyDebian:/usr/lib/pymodules/python2.7$ python Python 2.7.3 (default, Mar 13 2014, 11:03:55) [GCC 4.7.2] on linux2 Type “help”, “copyright”, “credits” or “license” for more information. >>> help(‘modules’) Please wait a moment while I gather a list of all available modules… /usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: […]
Freeswitch-python module install & configuration Debian Linux/Freeswitch source 설치 기준으로 설명한다. Freeswitch Python 모듈인 mod_pythom 을 설치해야 한다. Source Directory 로 이동하자. $ cd /usr/local/src/freeswitch.git Freeswitch 는 설치시 모든 모듈을 컴파일하지 않는다. 아무런 추가 설정이 없다면 기본 모듈만을 설치한다. 따라서, 다른 추가 모듈들이 필요하다면 별도의 설정 후, 다시 컴파일을 진행해 주어야 한다. 정확히는 컴파일 시, […]
시스템 부팅시 자동으로 NIC 에 IP 를 할당하고 싶다면 /etc/rc.conf 파일을 이용한다. rc.conf 설정 예제. root@FBSD10:/etc # vi rc.conf hostname=”FBSD10″ #ifconfig_em0=”DHCP” ifconfig_em0=”10.0.2.16/24″ ifconfig_em0_ipv6=”inet6 accept_rtadv” sshd_enable=”YES” ntpd_enable=”YES” # Set dumpdev to “AUTO” to enable crash dumps, “NO” to disable dumpdev=”AUTO” # Set for em1 ifconfig_em1=”192.168.200.12/24″ # Set for em2 ifconfig_em2=”192.168.201.12/24″ # Default route gateway defaultrouter=”10.0.2.2″ […]
Freeswitch Pizza voice 예제를 Test하려고 spidermonkey 모듈을 찾았다. 사용한 Freeswitch 버전은 1.2.7 버전. 이 글을 쓰는 시점에서 git 으로 다운받으로 최신의 버전이다. 그런데, 소스를 아무리 뒤져봐도 mod_spidermonkey 컴파일을 할 수가 없었다.(디렉토리/Makefile 분석 등등..) 아예 소스 자체가 없는 것으로 보아 배포판 버전에 빠져있는 듯 하다. Freeswitch IRC 에 문의를 해보니 spidermonkey 배포 누락에 관한 […]
Continue reading about Where’s mod_spdiermonkey source in Freeswitch-1.2.7?
Freeswitch 에서 사용하는 Module On/Off 를 설정하는 파일. fs_cli 로 접속하여 load 명령어로도 On/Off 가 가능하지만, Freeswitch 재 시작 후, 매번 load 명령어를 날려줘야만 하는 불편함이 있다. 이럴 경우, modules.conf.xml 파일에 Freeswitch 시작시 자동 load module을 설정해 놓으면 편리하다. pchero@MyDebian:/usr/local/freeswitch/conf/autoload_configs$ cat modules.conf.xml <configuration name=”modules.conf” description=”Modules”> <modules> <!– Loggers (I’d load these first) –> <load module=”mod_console”/> […]
Recent Comments