本文介绍了当我尝试在Windows 7中克隆HN时出错:无法识别'rm'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已将Arc 3.1和Racket下载到我的Windows 7计算机上.我已经按照 http://www.arclanguage.org/item?id=12397中的指示解决了许多错误现在,当我输入(nsv)时,会发生以下错误,并且localhost:8080变为空白:

I have downloaded Arc 3.1 and Racket to my Windows 7 machine.I have solved many errors as instructed in http://www.arclanguage.org/item?id=12397 Now when I enter (nsv) the following error occurs and localhost:8080 comes out blank:

arc> (nsv)
'rm' is not recognized as an internal or external command,
operable program or batch file.
load items:
ranking stories.
user break

=== context ===
C:\arc3.1\ac.scm:1031:20
 gs1259

ready to serve port 8080
user break

=== context ===
C:\arc3.1\ac.scm:1031:20
 gs1259

**open-input-file: cannot open input file: "C:/dev/urandom" (The system cannot fin
d the path specified.; errno=3)**

=== context ===
 rand-string
 new-fnid
 fnid
 flink
zz
zz
zz
 gs2061
 cache
 newspage
 gs2059
 gs1059
 handle-request-thread

推荐答案

听起来好像cygwin设置有问题.找不到rm. cygwin二进制文件应该在您的路径中吗?

Sounds like there's something wrong with your cygwin setup. It can't find rm. Should the cygwin binaries be in your path or something?

此外,cygwin可能应该翻译/dev/urandom,因为C:/dev/urandom没有意义

Also, cygwin should probably be translating /dev/urandom, since C:/dev/urandom doesn't make sense

这篇关于当我尝试在Windows 7中克隆HN时出错:无法识别'rm'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 01:59