# Sets the target folders and the final framework product. FMK_NAME=HovnVoipEngine FMK_VERSION=1.0 # Install dir will be the final output to the framework. # The following line create it in the root folder of the current project. INSTALL_DIR=${SRCROO…
把上个月写的的配置脚本贴一下: #!/bin/bash #version:-- #create by itn #dis: this is used to auto install ffmpeg+nginx+nginx-rtmp-module. #ffmpeg inatall echo "###############Now we start to install ffmpeg!###############" cd /usr/local wget http://ffmpeg.org/r…
IOS APP配置.plist汇总(转自coolweather ) 此文转自http://www.cocoachina.com/bbs/read.php?tid=89684&page=1 作者:coolweather 整了一下了,分享給大家 1. Application does not run in background(键名:UIApplicationExistsOnSuspend)自从iOS4.0之後,當你在應用程式執行的時候按下Home鍵,應用程式並不會中斷目前的執行,而是躲到背…
Linux下软件的安装一般由3个步骤组成: ./configure --host=arm-linux ... //配置 make //编译 make install //安装 若取消编译: make clean //只清除之前编译的可执行文件及配置文件. make distclean //清除所有生成的文件. 若卸载软件: make uninstall //卸载 本节主要讨论configure配置脚本. 如下图所示,有些软件就有configure配置脚本: 就可以使用命令./configure…
烽火交换机端口映射配置 ip nat inside source static udp iP 端口号 公网iP 端口号 ip nat inside source interface Vlan-intf1 ip address 172.16.1.1 255.255.255.0 no ip directed-broadcast ip nat inside ip access-list standard permit 172.16.1.0 255.255.255.0 deny any ip dhcpd…
由于经常使用 vim 编辑配置文件,有时候也会进行使用vim 编写一些脚本和c/c++ 程序,所以配置一个常用的 vim 是很是必要的.这篇博文主要是记录vim使用和配置相关的一些知识点. 关于vim : vim 是比较好用的编辑器,很多linux server 都自带vi, vim 是vi 的升级版本.可以方便在linux 环境中进行安装和配置.vim主要功能是编写,并且有很好的扩展性.通过配置可以优化出适合自己的一种vim,并且可以把配置文件储存到github或者远程服务器上,当进入新的环境…
1./etc/motd 操作:echo " Authorized users only. All activity may be monitored and reported " > /etc/motd 效果:telnet和ssh登录后的输出信息 2. /etc/issue和/etc/issue.net 操作:echo " Authorized users only. All activity may be monitored and reported " &…
转自:https://robots.thoughtbot.com/creating-your-first-ios-framework If you’ve ever tried to create your own iOS framework, you know that it’s not for the faint of heart – managing dependencies and writing tests doesn’t make it any easier. This tutoria…