Do you have a strange power saving mode enabled

Uhhuh. NMI received for unknown reason 21.
Dazed and confused, but trying to continue
Do you have a strange power saving mode enabled?

拷贝了一台虚拟机,启动时报如上的错误。问题查找中··· ···

之前虚拟机是在Inter CPU中安装的,现在的笔记本是AMD的,网上看见说跟内核有关系,难道是换了U的问题?还有的说是内存的问题。

Microsoft.Net 应用程序安全性

规则 “Microsoft.Net 应用程序安全性” 生成了警告。

计算机无法访问Internet。在启动Management Studio 等.Net 应用程序时,可能会有延迟。如果导航到

http://crl.microsoft.com/pki/crl/procucts/MicrosoftRootAuthority.crl,并提示下载MicrosoftRootAuthority.crl文件,您应该没有.Net安全验证问题。不必下载MicrosoftRootAuthority.crl文件

出现这个问题一般是计算机没有连接到互联网,检测“安装程序支持规则”时才会提示。一般没什么问题,继续安装即可。

解决extmail 新窗口再次登录时提示403错误

      当我们登陆过一次extmail时,如果在新窗口中再次打开登陆页面时,会提示如下信息:

xxx@xxx.com 帐户已登录
请选择您的操作:
进入Webmail     退出

如果我们点击“进入webmail ” 会提示拒绝访问的错误提示(403错误) :

Forbidden
You don’t have permission to access /extmail/cgi/ on this server.

解决方法:

[root@emos ~]# vi /var/www/extsuite/extmail/html/default/index.html

121         <div id=”lgextmail” style=”display:block;”>
122         <TABLE cellpadding=2px>
123                 <tr><td colspan=2><b><%USER%></b> <%already_login%></td></tr>
124                 <tr><td colspan=2><%choose_action%></td></tr>
125                 <tr><td align=center><a href=”./?__mode=welcome&amp;sid=<%SID%>”><%enter%></a> </td>
126                 <td align=center><a href=”./?__mode=logout&amp;sid=<%SID%>”><%logout%></a></tr>
127         </TABLE>
128         </div>
红色部分修改为:

121         <div id=”lgextmail” style=”display:block;”>
122         <TABLE cellpadding=2px>
123                 <tr><td colspan=2><b><%USER%></b> <%already_login%></td></tr>
124                 <tr><td colspan=2><%choose_action%></td></tr>
125                 <tr><td align=center><a href=”./index.cgi?__mode=welcome&amp;sid=<%SID%>”><%enter%></a> </td>
126                 <td align=center><a href=”./index.cgi?__mode=logout&amp;sid=<%SID%>”><%logout%></a></tr>
127         </TABLE>
128         </div>

ok了~