首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2009年4月11日

摘要: Telnet服务的配置步骤如下: 一、安装telnet软件包(通常要两个) 1、 telnet-client (或 telnet),这个软件包提供的是 telnet 客户端程序; 2、 telnet-server ,这个软件包提供的是 telnet 服务器端程序; 安装之前先检测是否这些软件包已安装,方法如下: [root@wljs root]#rpm –q telnet或[root@wljs root]#rpm –q telnet-client [root@wljs root]#rpm –q telnet-server 如果没有检测到软件包,需要进行安装,red hat linux 9默认已安装了telnet软件包,一般只要安装telnet-server软件包。 1、在red hat linux 9的安装盘中获取telnet-server-0.17-25.i386.rpm软件包。 2、安装软件包 [root@wljs root]#rpm –i telnet-server-0.17-25.i386.rpm 注意 LINUX AS4 阅读全文

posted @ 2009-04-11 23:45 饭后爱 阅读(582) 评论(0) 推荐(0)

摘要: Errors in code are inevitable. No matter how much testing you have done, when your application is deployed in a production environment, errors will occur. These problems can manifest as standard exceptions, as hangs where the CPU is being used 100 percent of the time, as deadlocks, where a couple of threads are locked and will never release the other's resources, and as crashes, where the application dies a silent death. In these cases, error logs often provide little or no help in pinpointi 阅读全文

posted @ 2009-04-11 10:04 饭后爱 阅读(533) 评论(0) 推荐(0)

摘要: Load order: mscoree.dll -> mscorwks.dll -> mscorlib.dll -> mscorjit.dll Sample Code: 阅读全文

posted @ 2009-04-11 09:21 饭后爱 阅读(480) 评论(0) 推荐(0)

摘要: CLR中执行的托管代码分为Jitted 代码和ngened代码。区Jitted代码是动态编译生成的而ngened代码是预编译生成的。本文将讲述使用Windbg在这两种不同的代码中设置断点的方法。本文将使用如下的例子进行说明: using System; public class Test { public static void Main() { Console.WriteLine("Test"); } } 编译上面的代码生成test.exe 阅读全文

posted @ 2009-04-11 00:03 饭后爱 阅读(1780) 评论(0) 推荐(0)