天行健,君子以自强不息!
发布时间:2013-07-23 17:29:25
创建两个文件夹:/data/和/opt/data/test/如果想将在/data/test/下创建的文件夹和新建的文件实际上都写到/opt/data/test/下,可以使用软链接来实现:$ ln -s /opt/data/* /data这样,在/data/test/ 下创建文件夹和文件都会自动重定向写到/opt/data/test/ 下; .........【阅读全文】
发布时间:2013-07-21 12:28:06
1. linux环境下build并启动crtmpserver这部分可以参见我写的专项详解文章《crtmpserver流媒体服务器的介绍与搭建》和《crtmpserver配置文件详解》2. 修改配置文件修改配置文件: crtmpserver.lua配置文件的具体意义见文章《crtmpserver配置文件详解》mediaFolder用来配置媒体文件的位置media/readme可看到支持的.........【阅读全文】
发布时间:2013-07-21 10:09:27
1. 闲言少述,先上代码,搭建Http server#!/usr/bin perl############################################################################## \File# HTTPServer.pl# \Brief# Setting the http server# \Author# Hank###################################################.........【阅读全文】
发布时间:2013-07-18 18:01:19
方法一:直接删除了cpan的配置文件及相关的软件#cd /etc/perl/CPAN#rm Config.pm#cd /root/.cpan (这个目录是在一开始以ROOT的账号初始化cpan时创建的)#rm -rf *然后重新配置cpan(此时相当于第一次使用cpan自动安装的功能)#perl -MCPAN -e shell#.... .........【阅读全文】
发布时间:2013-07-13 23:15:29
配置文件 Configuration fileThe configuration file is actually a lua script which must contain an object called configuration. This will be read by the server and used to fully configure the server. Besides this object called configuration you can have functions, includ.........【阅读全文】