Windows

在Windows系统下集成了最新版本的Apache2, Perl

一、在Windows系统下集成了最新版本的Apache2,Perl5,PHP5,MySQL5,phpMyAdmin,并不需要额外的安装,解压后就可以使用这套集成起来的系统。操作系统:Windows软件主页:http://www.uniformserver.com/文档地址:下载地址:http://sourceforge.net/project/platformdownload.php?group_id=53691收录时间:2008年09月08日二、许多人通

系统 2019-08-29 23:14:56 2887

Windows

Windows 2000 Server Baseline Security Checkl

Windows2000ServerBaselineSecurityChecklistThischecklistoutlinesthestepsyoushouldtaketoimprovethesecurityofcomputersrunningWindows2000ServereitherontheirownoraspartofaWindowsNT,orWindows2000,orWindowsServer2003domain.Thesestepsappl

系统 2019-08-29 22:59:56 2886

Linux

Install ntop on Red Hat Enterprise Linux / C

http://www.cyberciti.biz/faq/howto-install-ntop-on-rhel-centos-fedora-linux/InstallntoponRedHatEnterpriseLinux/CentOSLinuxbyVIVEKGITEonJULY28,2008·34COMMENTS·lastupdatedatJULY28,2008Q.ntopisanetworkprobethatshowsnetworkusageinaway

系统 2019-08-12 01:31:40 2885

Windows

Windows编程之从控制台到SDK窗口

1.典型C/C++程序/*HelloC.c*/#includeintmain(intargc,char*argv[]){printf("HelloC!/n");return0;}//HelloCPP1.cpp#includeintmain(intargc,char*argv[]){std::cout<<"HelloCPP!/n";return0;}//HelloCPP2.cpp#includeusi

系统 2019-08-29 23:31:28 2884

操作系统

What is the difference between JRE,JVM and J

IfyouareaJavadeveloper,itisveryoftenthatyouthinkaboutunderstandingtheJRE,JVMandJDK.Onceifyouunderstandthesethings,itwouldbequiteeasyforyoutovisualizethingsinlogicalmanner.Alsolookatthepicturebelow,thatwillclearallyourquestionsabou

系统 2019-08-12 01:33:01 2884

Windows

隐藏了“上帝模式”?Windows 7的小把戏

微软在Windows系统中会隐藏某些功能,比如说今天要介绍的,你可以在一个面板中查看任务控制面板和系统设置的所有内容,就如同“上帝模式”一般。不过Windows7却将该功能藏匿了起来,下面来看一下该功能究竟有何玄妙。首先,在桌面或是其它地方创建一个新的文件夹;然后将此文件夹重命名为“XX.{ED7BA470-8E54-465E-825C-99712043E01C}”,例如“驱动之家.{ED7BA470-8E54-465E-825C-99712043E01C

系统 2019-08-29 23:28:23 2883

操作系统

centos FTP 用户指定目录禁用上级目录

在默认配置下,本地用户登入FTP后可以使用cd命令切换到其他目录,这样会对系统带来安全隐患。可以通过以下三条配置文件来控制用户切换目录。chroot_list_enable=YES/NO(NO)设置是否启用chroot_list_file配置项指定的用户列表文件。默认值为NO。chroot_list_file=/etc/vsftpd.chroot_list用于指定用户列表文件,该文件用于控制哪些用户可以切换到用户家目录的上级目录。chroot_local_

系统 2019-08-12 01:33:33 2883

Windows

windows phone7 前台控件绑定Binding HTML串给W

BindingHtmltotheWebBrowserControl如webBrowser1.NavigateToString()等你可以将您的HTML字符串绑定到webBrowser中去,NavigateToString载入你的html字符串的变化1.首先创建一个属性。2.引入命名空间。3.通过前辍调用属性给WebBrowser附加。windowsphone7前台控件绑定BindingHTML串给WebBrowser控件的方法

系统 2019-08-12 01:33:07 2883

操作系统

vim查找替换功能总结

vim查找替换功能总结1,简单替换表达式搜索并替换。输入:[range]s/from/to/[flags]命令可以搜索匹配的字符串并且替换为指定的字符串。这是一个稍微复杂的命令。其中[range]是一个可选项,用来指定搜索替换的范围。[flags]也是一个可选项,用来指定搜索替换的处理方式。所以这个命令的简单形式是:s/from/to/。搜索替换的范围。如果没有指定范围,则只在当前行进行搜索替换。在所有行进行搜索替换。范围符号%表示在所有行进行搜索替换。:

系统 2019-08-12 01:32:01 2882

Ubuntu

ubuntu 下安装FTP服务器VSFTPD

FileTransferProtocol(FTP)isaTCPprotocolforuploadinganddownloadingfilesbetweencomputers.FTPworksonaclient/servermodel.TheservercomponentiscalledanFTPdaemon.ItcontinuouslylistensforFTPrequestsfromremoteclients.Whenarequestisreceived

系统 2019-08-12 09:30:19 2879

操作系统

c getaddrinfo函数

IPv4中使用gethostbyname()函数完成主机名到地址解析,这个函数仅仅支持IPv4,且不允许调用者指定所需地址类型的任何信息,返回的结构只包含了用于存储IPv4地址的空间。IPv6中引入了getaddrinfo()的新API,它是协议无关的,既可用于IPv4也可用于IPv6。getaddrinfo函数能够处理名字到地址以及服务到端口这两种转换,返回的是一个addrinfo的结构(列表)指针而不是一个地址清单。这些addrinfo结构随后可由套接

系统 2019-08-12 01:33:50 2879

Linux

tomcat在linux中的启动和查看相关信息

打开终端cd/java/tomcat#执行bin/startup.sh#启动tomcatbin/shutdown.sh#停止tomcattail-flogs/catalina.out#看tomcat的控制台输出;#看是否已经有tomcat在运行了ps-ef|greptomcat#如果有,用kill;kill-9pid#pid为相应的进程号例如pe-ef|greptomcat输出如下sun51441010:21pts/100:00:06/java/jdk/b

系统 2019-08-12 01:32:57 2879

Windows

在Debian Etch上安装Windows

原文地址:http://www.javaeedev.com/blog/article.jspx?articleId=ff80808114a5e25d0114c01e698f00a8WindowsXP安装完毕的界面:Trackback:http://tb.blog.csdn.net/TrackBack.aspx?PostId=1768435在DebianEtch上安装Windows

系统 2019-08-12 01:32:38 2879

Linux

Linux 内核--任务0的运行(切换到用户模式)mov

本文分析基于Linux0.11内核,转载请标明出处,http://blog.csdn.net/yming0221/archive/2011/06/01/6459119.aspx在main.c的程序中,当设备初始化完毕后,程序将从内核模式切换到用户模式,也就是所说的任务0,执行fork()函数(该函数使用内嵌的汇编,防止函数调用弄乱堆栈,造成写时复制COPY_ON_WRITE)切换到用户堆栈并执行任务0使用iret指令,首先将有关的值压入堆栈,然后执行ire

系统 2019-08-29 23:20:16 2877

操作系统

DHCP服务器

(1)安装dhcp3-server:apt-getinstalldhcp3-server(2)a、gedit/etc/default/dhcp3-serverINTERFACES="eth1"b、gedit/etc/dhcp3/dhcpd.confsubnet192.168.0.0netmask255.255.255.0{range192.168.0.2192.168.0.254;optiondomain-name-servers192.168.0.1,2

系统 2019-08-12 01:32:03 2876