[embedded]How to set autherity enable with httpd of busybox

2017-12-11 写技术

In http.conf dir/:user:pass In start command  httpd -h /home/www -c http.conf

阅读全文>>

标签: embedded

评论(0) 浏览(1447)

[linux]How to change password

2017-12-11 写技术

echo user:pass|chpasswd

阅读全文>>

标签: linux

评论(0) 浏览(1446)

[html]浏览器模式的指定

2017-12-11 写技术

浏览器为了兼容新旧协议,分了不同模式,如Quick mode及Standars mode, 为了让自己的页面告诉浏览器用何种模式,可以在页头加上DTD,如 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  具体定议很多内容,我只简单标记下。

阅读全文>>

标签: html

评论(0) 浏览(1386)

[JS]Multy language by javascript

2017-11-29 写技术

var get_lan=function(){ $(".lan").each(function(){ var lan_key=$(this).attr("data_lan"); lan_key="g_lan."+lan_key; var lan_key=eval("("+lan_key+")"); $(this).text(lan_val); }) }

阅读全文>>

标签: JS

评论(0) 浏览(1402)

[JS]A demo of websockets on javascript

2017-11-6 写技术

ws = new WebSocket("ws:192.168.0.100:4444"); ws.onopen = function(e) { console.log("Connected"); ws.send("Hello nicholas server!"); }; ws.onclose = function(e) { console.log("Disconnected: " + e.reason); }; ws.onerror = function(e) { console.log(...

阅读全文>>

标签: JS

评论(0) 浏览(1468)

[html]前端不刷新提交文件的方法

2017-10-24 写技术

想来想去,还是只能利用form来提交,除此之外,jquery似乎没法获得文件流。 <iframe id=id_iframe_scroller name=name_iframe_scroller src=HardUpdateState.cgi ></iframe> <FORM enctype=multipart/form-data method=POST action=/cgi-bin/response_UploadFile.cgi target=name_iframe_scroller > <input class="text" type...

阅读全文>>

标签: html

评论(0) 浏览(1449)

[linux]A simple driver of linux

2017-10-23 写技术

hello.c #include <linux/init.h> #include <linux/module.h> static int hello_init(void){ printk(KERN_INFO "Hello nicholas, driver is comming\n"); return 0; } static void hello_exit(void){ printk(KERN_INFO "See you, driver"); } module_init(hello_init); ...

阅读全文>>

标签: linux

评论(0) 浏览(1432)

[C]Example of websockets server

2017-10-23 写技术

#include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <openssl/sha.h> #include <openssl/pem.h> #include <openssl/bio.h> #incl...

阅读全文>>

标签: C

评论(0) 浏览(1498)

[embedded]To receive upload file by cgi-bin

2017-10-23 写技术

#include <stdio.h> #include <stdlib.h> #include <string.h> #define STR_LEN 50 #define bufferSize 512 #define FPATH "../uploads/" #define STATUS_FILE "../uploadStatus.htm" #define SHELL_FILE "../shell/response_Firmware.sh" #define SYS_LOG "firmware.ini" /* int writeSt...

阅读全文>>

标签: embedded

评论(0) 浏览(1352)

[linux]LAMP一键web遭遇记

2017-10-8 写技术

这两天居然在搭建LAMP服务器这种事情上翻船了,昨天新买了个阿里云的ECS,座标美国,开开心心地用ssh连上服务器,上传一键web安装脚本,然后运行,由于要一个小时左右,我就先去跑步了,结果回家后一看果然就安装成功了。然而…… netstat -tunl 打下去之后,没有80端口, 一定是哪里不对了,于是检查脚本,手动安装,更换不同版本,简直能想的办法都想尽了, 始终没能跑起来。这一弄就到了凌晨2点,一点也不困,但我心里还是知道的,我这一把年纪了,不宜熬夜,虽然大脚越发清醒,却明明感觉心累,强迫自己关机睡觉。 睡床上还在想,明天应该试试换个系统,...

阅读全文>>

标签: linux

评论(0) 浏览(1246)

Powered by anycle 湘ICP备15001973号-1