Questions tagged «windows»

编写特定于Microsoft Windows操作系统的软件:API,行为等。注意:常规WINDOWS支持不在主题内。可以在https://superuser.com上询问支持问题


16
安装libv8时出错:错误:无法构建gem本机扩展
我做了一个Rails项目, rails new test_bootstrap. 成功了。 移动到项目目录并添加了宝石 gem "therubyracer" gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS gem "twitter-bootstrap-rails" 并运行 bundle install 在那之后,我有这个错误。 Installing libv8 (3.16.14.3) Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. c:/RailsInstaller/Ruby1.9.3/bin/ruby.exe extconf.rb creating Makefile 지정된 경로를 찾을 수 없습니다. 지정된 경로를 찾을 …

7
NTFS性能以及大量文件和目录
带有NTFS的Windows如何处理大量文件和目录? 在遇到性能问题或其他问题之前,是否可以围绕单个目录中的文件或目录限制提供任何指导? 例如,其中有一个包含100,000个文件夹的文件夹,可以这样做吗?


16
停止所有node.js服务器实例
这是我第一次使用Node.js,遇到了这个问题: 我已经通过IDE的插件启动了节点服务器。不幸的是,我无法使用IDE的终端。因此,我尝试从命令行运行脚本。 这是问题所在-我正在使用Express模块​​,而我的应用正在监听某个端口(8080)。当我从命令行启动应用程序时,它将引发以下错误: events.js:71 throw arguments[1]; // Unhandled 'error' event ^ Error: listen EADDRINUSE at errnoException (net.js:770:11) at HTTPServer.Server._listen2 (net.js:910:14) at listen (net.js:937:10) at HTTPServer.Server.listen (net.js:986:5) at Object.<anonymous> (C:\xampp\htdocs\node\chat\app.js:5:5) at Module._compile (module.js:449:26) at Object.Module._extensions..js (module.js:467:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Module.runMain (module.js:492:10) 即使我不太确定该错误可能是什么,我仍然认为这是因为该应用程序正在侦听已在使用的端口。所以我做了: netstat -an 我可以看到 TCP 0.0.0.0:8080 …


27
XAMPP-端口80正在使用PID 4的“无法打开过程”!12
我已经尝试了两天来解决此问题。我是这种事物的新手,所以如果有人可以告诉我如何修复它,我将不胜感激。 我曾尝试删除Skype,但那没有用,我曾尝试关闭万维网,而IIS似乎没有任何作用。 12:51:22 PM [Apache] Problem detected! 12:51:22 PM [Apache] Port 80 in use by "Unable to open process" with PID 4! 12:51:22 PM [Apache] Apache WILL NOT start without the configured ports free! 12:51:22 PM [Apache] You need to uninstall/disable/reconfigure the blocking application 12:51:22 PM [Apache] or reconfigure Apache …
181 windows  apache  xampp 




9
签署Windows EXE档案
我有一个我要签名的EXE文件,以便Windows不会警告最终用户有关来自“未知发行商”的应用程序。我不是Windows开发人员。所讨论的应用程序是从生成屏幕保护程序应用程序的应用程序生成的屏幕保护程序。因此,我对文件的生成方式没有任何影响。 我已经发现,我需要来自Verisign或Instantssl.com 这样的CA的代码签名证书。我不了解的是我需要做的(如果有可能)对我的EXE文件进行签名。有什么简单的解释? 梅尔·格林(Mel Green)的回答使我走得更远,但是signtool希望我指定在任何情况下都使用哪种证书。我可以某种方式获得免费的代码签名证书以测试它是否对我完全有效吗? 另外,请指定哪种证书类型是正确的。大多数站点仅提及“代码签名”,并谈论对用户实际编译的应用程序进行签名。对我来说不是这样。
178 windows  certificate  exe  sign 

16
在Windows XAMPP中升级PHP?
我想知道如何在Windows Xampp中升级PHP?我试图从PHP主站点下载最新的PHP版本,但是当我检查(phpinfo)时,仍然可以看到以前的版本仍在使用中。
174 php  windows  xampp 

8
在.vimrc文件中设置gvim字体
我在Windows 7上使用gVim 7.2。我可以从菜单中将gui字体设置为Consolas 10(字体大小)。我试图在.vimrc文件中设置如下所示: set guifont=Consolas\ 10 但这是行不通的。有人知道如何设置吗?
174 windows  vim 

23
SSH到Windows中的Vagrant框?
我正在使用Vagrant在Windows中启动VirtualBox VM。在其他平台上,我可以 $ vagrant ssh 连接到VM。 我该如何在Windows中连接到这个Vagrant盒子? Vagrant文​​档中建议的使用PuTTy的方法也无效: http://docs-v1.vagrantup.com/v1/docs/getting-started/ssh.html

6
Windows上的Git文件权限
我已经阅读了一些有关Git中文件权限的问题,但我仍然有些困惑。我在GitHub上有一个由另一个仓库分叉的仓库。合并后,它们应该相同。然而: $ git diff --summary origin/epsilon master/epsilon mode change 100644 => 100755 ants/dist/sample_bots/csharp/compile.sh mode change 100644 => 100755 ants/dist/starter_bots/coffeescript/MyBot.coffee mode change 100644 => 100755 ants/dist/starter_bots/coffeescript/ants.coffee mode change 100644 => 100755 ants/util/block_test.sh mode change 100644 => 100755 manager/mass_skill_update.py mode change 100644 => 100755 worker/jailguard.py mode change 100644 => 100755 worker/release_stale_jails.py mode …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.