linux – 如何在Ubuntu 8.10中设置6.001的MIT Scheme

我通过视频讲座和讲座讲义自学6.001.但是,我在Ubuntu(intrepid)中设置MIT Scheme时遇到了一些问题.

我使用了包管理并安装了MIT-Scheme,但它显然是错误的版本.它应该是7.5.1而不是7.7.90

我按照本网站的说明(http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-001Spring-2005/Tools/detail/linuxinstall.htm)

到目前为止,我已经下载了tar文件,并解压缩到/usr/local.我不知道第3步意味着什么.

然后我进入了命令

scheme -large -band 6001.com -edit

而错误是

Not enough memory for this configuration.
I tried to run under sudo mode, and this time the error is different
Unable to allocate process table.

Inconsistency detected

我有近1GB的可用内存,有足够的硬盘空间.我该怎么做才能成功设置它?

最佳答案 步骤3表示您应键入export MITSCHEME_6001_DIRECTORY = ${your_problems_path}.如果您不想在每次启动Scheme时键入它,则应将其作为字符串放在〜/ .bash_profile文件中(如果您使用bash)

关于问题本身,Google立即提出了一个解决方案:
sudo sysctl -w vm.mmap_min_addr = 0(取自http://ubuntuforums.org/showthread.php?p=4868292)

点赞