瑞星也流氓了。。 卸载找了半天最后发现要专用工具
Dec 27th, 2009 by song

瑞星也流氓了。。 卸载找了半天最后发现要专用工具


现在啥世道啊。。。

连瑞星都这样了。。

[file][attach]5[/attach][/file]

驱动器 E 未被格式化
Apr 6th, 2008 by song

今天突然硬盘提示驱动器 e 未被格式化是否格式化

 执行Cmd 中的 chkdsk e:/f 重启扫描玩即可

IBM T61P + uBuntu 装指纹系统
Jan 24th, 2008 by song

IBM T61P + uBuntu 装指纹系统
安装方法

先去http://thinkfinger.sourceforge.net 下载 tf-tool 3.0

或 下载下面的 附件

下下来 是个 压缩包 放在 根目录下

安装 gcc编译环境 libtool pkg-config libpam0g-dev libusb-dev

可使用apt-get更新安装

sudo apt-get install libtool pkg-config libpam0g-dev libusb-dev build-essential

将下下来的压缩包 解压

tar -xzvf thinkfinger-0.3.tar.gz

进入 解压出来的目录

cd thinkfinger-0.3

然后

./configure –with-securedir=/lib/security –with-birdir=/etc/pam_thinkfinger

由于默认的prefix是/usr/local,如果不加此参数,则指纹数据会放在/usr/local/etc/pam_thinkfinger,而 thinkfinger需要用户指纹数据放在/etc/pam_thinkfinger下(上面这个是每个教程 不同的 地方 )

然后

make

sudo make install

下面是配置

sudo tf-tool –acquire
测试是否正常获取指纹数据
需要输入3次测试指纹

sudo tf-tool –verify
验证是否可以正确识别

sudo mkdir -p /etc/pam_thinkfinger
创建需要的目录

sudo gedit /etc/pam.d/common-auth
修改/etc/pam.d/common-auth文件 Read the rest of this entry »

OGRE 3D AppWizard 安装在VC9
Jan 2nd, 2008 by song

官方的这个安装引导程序无法在VC9(VS2008)上运行
打开看了下文件JS做的做了点小手术即可运行 修改了下注册表对应的路径


[code]// Ogre SDK Application Wizard
// Copyright (C) 2006 jacmoe
//
// This file is a part of the Ogre Application Wizard.
// The code and information is provided "as-is" without
// warranty of any kind, either expressed or implied.

// Setup program for the Ogre Application Wizard

main();

function main()
{
  var bDebug = false;
  var Args = WScript.Arguments;
  if(Args.length > 0 && Args(0) == "/debug")
    bDebug = true;

  // Create shell object
  var WSShell = WScript.CreateObject("WScript.Shell");
  // Create file system object
  var FileSys = WScript.CreateObject("Scripting.FileSystemObject");

  var strValue = FileSys.GetAbsolutePathName(".");
  if(strValue == null || strValue == "")
    strValue = ".";

  var strSourceFolder = strValue + "\\" + "Files";
  if(bDebug)
    WScript.Echo("Source: " + strSourceFolder);

  if(!FileSys.FolderExists(strSourceFolder))
  {
    WScript.Echo("ERROR: Cannot find Wizard folder (should be: " + strSourceFolder + ")");
    return;
  }

  var strVC8Key = "HKLM\\Software\\Microsoft\\VisualStudio\\9.0\\Setup\\VC\\ProductDir";
  try
  {
    strValue = WSShell.RegRead(strVC8Key);
  }
  catch(e)
  {
    var strVC8Key = "HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\VCExpress\\8.0\\Setup\\VC\\ProductDir";
    try
    {
      strValue = WSShell.RegRead(strVC8Key);
    }
    catch(e)
    {
      WScript.Echo("ERROR: Cannot find where Visual Studio 8.0 is installed.");
      return;
    }
  }
  
  var strDestFolder = strValue + "\VCProjects";
  if(bDebug)
    WScript.Echo("Destination: " + strDestFolder);
  if(!FileSys.FolderExists(strDestFolder))
  {
    WScript.Echo("ERROR: Cannot find destination folder (should be: " + strDestFolder + ")");
    return;
  }

  var strDest = strDestFolder + "\\";
  var strSrc = "";

  // Copy files
  try
  {
    strSrc = strSourceFolder + "\\OgreSDKAppWizard80.ico";
    FileSys.CopyFile(strSrc, strDest);
    strSrc = strSourceFolder + "\\OgreSDKAppWizard80.vsdir";
    FileSys.CopyFile(strSrc, strDest);
  }
  catch(e)
  {
    var strError = "no info";
    if(e.description.length != 0)
      strError = e.description;
    WScript.Echo("ERROR: Cannot copy file (" + strError + ")");
    return;
  }

  // Read and write OgreWizard71.vsz, replace path when found
  try
  {
    strSrc = strSourceFolder + "\\OgreSDKAppWizard80.vsz";
    strDest = strDestFolder + "\\OgreSDKAppWizard80.vsz";

    var ForReading = 1;
    var fileSrc = FileSys.OpenTextFile(strSrc, ForReading);
    if(fileSrc == null)
    {
      WScript.Echo("ERROR: Cannot open source file " + strSrc);
      return;
    }

    var ForWriting = 2;
    var fileDest = FileSys.OpenTextFile(strDest, ForWriting, true);
    if(fileDest == null)
    {
      WScript.Echo("ERROR: Cannot open destination file" + strDest);
      return;
    }

    while(!fileSrc.AtEndOfStream)
    {
      var strLine = fileSrc.ReadLine();
      if(strLine.indexOf("ABSOLUTE_PATH") != -1)
        strLine = "Param=\"ABSOLUTE_PATH = " + strSourceFolder + "\"";
      fileDest.WriteLine(strLine);
    }

    fileSrc.Close();
    fileDest.Close();
  }
  catch(e)
  {
    var strError = "no info";
    if(e.description.length != 0)
      strError = e.description;
    WScript.Echo("ERROR: Cannot read and write OgreSDKAppWizard80.vsz (" + strError + ")");
    return;
  }

  WScript.Echo("Ogre SDK Application Wizard successfully installed - enjoy!");
}[/code]

Windows 键盘技巧
Nov 28th, 2007 by song

一、常见用法:

F1           显示当前程序或者windows的帮助内容。

F2           当你选中一个文件的话,这意味着“重命名”

F3           当你在桌面上的时候是打开“查找:所有文件” 对话框

F10或ALT        激活当前程序的菜单栏

windows键或CTRL+ESC   打开开始菜单 Read the rest of this entry »

征途SF登陆器 VC版
Oct 12th, 2007 by song

前登陆器 采用远程网页式“注册”、“帐户管理”、“会员充值等”
这样安全不暴露数据字段
登陆器基本功能
当前版本 0.9 Beta
点击下载最新版登陆器
点击下载最新版文件更新配置器

自动读取XML自动更新补丁文件
读取XML文件读取服务器列表
自动创建 zhengtu 1.03执行文件,不与别人冲突
自动配置Config.ini文件
检测服务器状态
让用户选择是否创建桌面图标

[img]attachment/1192154631_0.jpg[/img]

[img]attachment/1192154631_1.jpg[/img]
自动更新 读取服务器端配置的XML 通过CRC及大小验证是否需要更新文件
和官方一致 且可以选择ZIP压缩方式更新节省下载时间及带宽
特别推荐使用ZIP压缩方式更新 因为如果其他后缀如在win2003服务器环境下
很容易下载失败因为没有添加特殊的后缀名
[img]attachment/1192154631_2.jpg[/img]

关于注册及找回密码等一套功能将使用PHP结合服务器注册

其中网站可管理服务器 管理经验物品活动奖品等
[img]attachment/1192154631_3.jpg[/img]
登陆器功能简单列表及制作时间
登陆器下载 http://www.gmwin.com/login.rar
更新配置器下载 http://www.gmwin.com/CreateUpdate.rar
关于登陆器加区没时间做配置器了需要配置的 联系我
如果没BUG停止更新功能了仅修正BUG了

破解Vista的并发连接数限制
Jul 20th, 2007 by song


为了防范蠕虫病毒的传播和攻击,微软在Windows XP SP2中即对最大的外出并发线程数设置了限定(不超过10并发连接/秒),系统实时监控并发线程数量,一旦它发现某进程的线程数超过10个,即触发4226错误,并自动屏蔽掉部分线程,这对于大部分需要大量连接进程才能保证性能的P2P应用来说影响是致命的,包括BT(BitTorrent)、BitComet、eMule以及很多P2PTV软件如PPLive、PPStream等。要想保证这些软件应用的速度与性能,必须首先破解Tcpip.sys对并必连接的限制。

在Windows Vista中,tcpip.sys同样存在类似对外出并发连接线程的限制,而且,相对于Windows XP sp2不同版本均采用不超过10个并发线程/秒的设置,Windows Vista 则依版本不同数值有所区别,比如说Windows Vista Ultimate 可允许不超过25个并发连接/秒,而Windows Vista Home Basic则仅允许2个并发连接/秒——估计这也是许多朋友反映Windows Vista中BT下载速度难以忍受的主要原因,毕竟目前随PC预装的Windows Vista大多为Home Basic。

要破解Windows Vista对并发连接的限制,思路基本与之前Windows XP sp2中类似,即使用修改后的tcpip.sys替换系统中已存在的同名文件,从而绕过Windows Vista对并发连接进程的监测。具体修改步骤稍比Windows XP SP2下复杂些,下面我们详细介绍如何破解Vista的并发连接数限制。

说明:

1、替换Tcpip.sys前请备份系统,或至少将tcpip.sys备份,以防万一。虽然下面提供的修改后的Tcpip.sys理论上可用于各个Windows Vista版本,不过,我们仅在Windows Vista Ultimate RTM中进行了实际测试,Vista天地对在其他版本Windows Vista中是否一定有效不作保证。

2、修改Tcpip.sys以破解Windows Vista对并发连接的限制
下载破解后的Tcpip.sys:
tcpip.sys (Windows Vista X86) http://windows-vista.highdiy.com/documents/tcpip-x86.rar
tcpip.sys (Windows Vista X64) http://windows-vista.highdiy.com/documents/tcpip-x64.rar
下载文件为rar格式,下载后解压即为相应版本的tcpip.sys。
要替换系统文件,需首先取得该文件的所有权及控制权,以管理员身份打开命令行窗口,运行如下命令:

takeown /f c:\windows\system32\drivers\tcpip.sys
cacls c:\windows\system32\drivers\tcpip.sys /G HighDiy:F

cacls命令中的“/G HighDiy:F”意指赋予用户“HighDiy”对该文件的完全控制权限,实际使用时应根据自己的用户名进行修改。

禁用 TCP/IP 的Auto-Tuning功能,如同提高Vista中多线程下载速度中介绍的那样,在命令行中输入:

netsh int tcp set global autotuninglevel=disable

对64-bit Windows Vista (x64)而言,在替换文件前还必须禁用Windows Vista的系统完整性检查,不然,系统重启后修改后的Tcpip.sys会自动被原始文件再次覆盖。具体方法是,在命令行中输入:

bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS

完成了上述操作后,即可使用下载的tcpip.sys覆盖Windows Vista中的原始文件了,将其直接拷贝到“C:\windows\system32\drivers”下即可。
注:如果拷贝失败的话,可重启系统,进入安全模式重新尝试。
最后,修改注册表设置最大外出并发连接数量,打开注册表编辑器,找到如下注册表分支:

HKEY_LOCALL_MACHINE\ SYSTEM\ CurrentControlSet\ Services\ Tcpip\ Parameters

在其下新建一个名为 “TcpNumConnections”的DWORD键,输入您希望的数值。

理论上讲,在这里输入的值可为任何数字,不过,将此值设置过大没有太多的实际意义,毕竟网络的整体带宽与PC自身的性能均有一定限制。一般而言,设为150 – 500便已足够。

[file]attachment/1184936468_0.rar[/file]

VISTA 游戏补丁 KB929427
Jul 20th, 2007 by song

VISTA 游戏补丁

如果无法安装请卸载掉你用Windows Update自动更新的KB932246这个补丁,然后再装KB929427就可以了!
打开你Vista的Windows Update界面,然后找到”已安装的更新”这个选项,在里面就有!~~

系统还原记录
Jul 20th, 2007 by song

使用 Windows 安装光盘进行还原的步骤
如果计算机随附 Windows 安装光盘,则可以使用此方法。

插入安装光盘,然后通过单击“开始”按钮 ,单击“锁定”按钮  旁边的箭头,然后单击“重新启动”来重新启动计算机。

如果没有将计算机配置为从 CD 或 DVD 启动,请参阅从 CD 或 DVD 启动 Windows 以获取有关如何执行此操作的说明。

在提示按键时按任何键。

选择语言设置,然后单击“下一步”。

单击“修复计算机”。

选择要修复的操作系统,然后单击“下一步”。
Read the rest of this entry »

以默认用户自动登录Windows Vista
Jul 19th, 2007 by song

以默认用户自动登录Windows Vista
在开始菜单搜索框输入 “netplwiz” 按回车,打开高级用户控制面板;
当然,这是一个触发UAC的操作,在UAC窗口中输入管理员密码或确认。
在高级用户控制面板中,取消对“要使用本机,用户需输入用户名和密码(E)”项的勾选;


系统将弹出窗口要求输入默认登录系统的用户名和密码,输入完成后点击确定;


重启Windows Vista,即可发现系统自动以默认用户登录。
注:此方法也可保证在系统注册表中未以明码保存用户密码。

SIDEBAR
»
S
I
D
E
B
A
R
«
»  Substance:WordPress   »