#> /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT # 开放80端口了
分类:
系统相关 时间:
2014-07-01 22:28:10
阅读次数:
355
http://hi.baidu.com/lansesansan/item/e6411bce3fb8c25ebdef6931
分类:
移动开发 时间:
2014-07-01 16:30:36
阅读次数:
220
前两天写RTC中断 使用串口输出
发现程序会出现while(!(rUTRSTAT0 & 0x2));出不来的情况,但是中断是正常运作的
解决方法:
main函数增加:
U32 mpll_val = 0,consoleNum;
Port_Init(); //定义在2440lib.c...
分类:
其他好文 时间:
2014-07-01 14:36:56
阅读次数:
459
如果是KDM、GDM、LightDM,打开~/.xprofile。如果是startx、Slim,打开~/.xinitrc。(没有就新建一个)export GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitxexport XMODIFIERS="@im=fcitx"...
分类:
其他好文 时间:
2014-07-01 12:59:02
阅读次数:
586
Ubuntu太臃肿了,遂换回debian系统。在虚拟机上装debian,发现console下中文不显示。各种export方法试过,始终无效。废了一个小时终于找到方法了。记录之。###debian设置语言的方法:- 编辑文件 /etc/locale.gen- root用户执行 locale-gen重启...
分类:
其他好文 时间:
2014-07-01 11:52:57
阅读次数:
235
参考:RPi Serial Connection本文来自:http://www.raspberry-projects.com/pi/programming-in-c/uart-serial-port/using-the-uartUsing the UARTIf you are running Ras...
分类:
Web程序 时间:
2014-07-01 10:21:01
阅读次数:
982
1、快速发现网络中存活主机
nmap -sP 192.168.1.* 或者
nmap -sP 192.168.1.-254
2、扫描UDP端口
DP扫描方式用于判断UDP端口的情况。向目标主机的UDP端口发送探测包,如果收到回复“ICMP port unreachable”就说明该端口是关闭的;如果没 有收到回复,那说明UDP端口可能是开...
分类:
其他好文 时间:
2014-07-01 07:59:17
阅读次数:
298
#include
#include
#include
static char out_ip[15] = "52.0.10.188";
static int out_port = 8888;
int main()
{
char sSendBuf[2049], sRecvBuf[2049];
int connfd = 0, iRet = 0, iSend...
分类:
其他好文 时间:
2014-07-01 06:31:44
阅读次数:
212