解决Mac OS下安装MyEclipse报错:Your system does not have sufficient memory to support MyEclipse

最近想尝尝鲜,FQ去www.myeclipseide.com上下载了最新版的MyEclipse 15CI版,安装的时候,报告如下错误(MyEclipse 14也会出现这个问题):

Your system does not have sufficient memory to support MyEclipse. MyEclipse requires 256 MBs physical memory and 64 MBs of virtual memory. Your system only has 4056708 MBs of physical memory, and 0 MBs of virtual memory".

百度和Google了下,发现很多解决方案都是写个程序强制性耗尽系统物理内存,逼迫系统开始使用虚拟内存,然后开始安装,这很明显是个很Low的办法,

功夫不费有心人,终于找到了如下靠谱的解决方案,目前已经成功安装:

1、下载完整的DMG安装文件

2、双击打开,此时会出现一个MyEclipse 15 XXXXX Installer.app文件,右键显示包内容

3、将包里的Contents文件夹复制出来,随便放个地方

4、删除 Contents/_CodeSignature 目录

5、编辑 MacOS/standard-install文件,里面大概是这样的:

1 #!/bin/sh
2 dir=`dirname "$0"`
3 cd "${dir}/../Installer"
4 dir=`pwd`
5 ./pulse-one -vmargs -Xms192m -Xmx256m -XX:MaxPermSize=128m -d32 -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts "-Dpulse.settings.directory=${dir}/../Settings" "-Dpulse.artifact.bin.path=${dir}/../Resources/artifacts.bin" "-Dpulse.installer.directory=${dir}" &

6、在-vmargs里增加"-Dcom.genuitec.pulse.debug.memory.check=true"并保存

7、运行Contents/MacOS/standard-install 文件,搞定!

原文:

Download the full installer 
- Open the DMG and then show the package content of the installer 
- Copy the content of the Show Package contents to a separate folder 
- Delete the CodeSignature folder 
- From SystemPrefences temporarly enable "Allow apps downloaded from Anywhere" (in your Security & Privacy settings) 
- Edit the file MacOS/standard-install and add the following to the vmargs: "-Dcom.genuitec.pulse.debug.memory.check=true" 
- Run standard-install

出处:https://www.myeclipseide.com/index.php?name=PNphpBB2&file=viewtopic&p=137321

时间: 2024-10-24 10:30:46

解决Mac OS下安装MyEclipse报错:Your system does not have sufficient memory to support MyEclipse的相关文章

解决mac os下mcss命令报错:env: node\r: No such file or directory

标题无“转载”即原创文章,版权所有.转载请注明来源:http://besteam.im/blogs/article/31/. 我一直对字符界面有抵触感,即使会用vim,我的linux脚本(python/bash script)一般都是在windows下写完调试好,然后传到linux上的. 不过写好的linux脚本传到linux上运行的时候却经常报这样的错: $ cat fish.py #!/usr/bin/env python print "fish" $ chmod u+x fish

debian 下安装 openldap 报错 BerkeleyDB not available 解决

debian 下安装 openldap 报错 BerkeleyDB not available 解决: apt-get install libdb-dev

MAC OS 中mount nfs 报错问题.

记一下 MAC OS 中mount nfs 报错问题. 环境和配置文件 NFS 服务端 Ubuntu 安装 apt install nfs-kernel-server 服务端的配置文件 cat /etc/exports /nfsdata 192.168.22.1/26(rw,sync,insecure,no_root_squash) CentOS 下测试挂载 yum install nfs-utils -y mount -t nfs -o rw 192.168.22.8:/nfsdata /tm

linux下安装php报错configure: error: Cannot find MySQL header files under /usr/include/mysql.

linux下安装php报错configure: error: Cannot find MySQL header files under /usr/include/mysql. 2013-03-04 15:34wdjhz | 分类:服务器软件 | 浏览5318次 configure: error: Cannot find MySQL header files under /usr/include/mysql.Note that the MySQL client library is not bun

win7 64下安装mysql-python报错的解决办法

最近要使用django进行项目开发,需要使用mysql-python模块. 在本地搭建环境安装的时候却出现报错,Unable to find vcvarsall.bat  在网上找了很多资料,发现是window平台本身不带编译系统,而安装mysql-python需要进行编译.网上给出的办法是,安装vs2008或者MinGW,很是麻烦.后来总算找到另外一种超级简单的办法. 原来国外一个大学-加州大学欧文分校的Christoph Gohlke提供了大量python非官方插件模块安装包:直接下载用pi

Cent OS 6.5 下安装Quagga 报错 vtysh needs libreadline

Centos 6.5 下安装 quagga-0.99.22 时遇到如下提示 ./configure --prefix=/usr/local/zebra  --enable-vtysh --enable-user=root --enable-group=root --enable-vty-group=root checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unkn

解决pycharm下安装reportLab报错的问题

在利用pycharm中自带的第三方安装工具安装reportLab时提示安装失败.失败的原因是缺失第三方扩展包.经过查阅查阅资料了解到一些python的第三方扩展包是需要python-dev支持的.我装好了python-dev之后再去安装reportLab果然成功了. linux下安装python-dev方法:sudo apt-get install python-dev

mac os 下安装python与Scrapy

安装setuotool 执行该命令 curl https://bootstrap.pypa.io/ez_setup.py -o - | python mac OS 自带python 2.7.6 从官网下载2.7.9安装后,在终端输入python 自动改变为2.7.9版本,且自带pip 执行pip install scrapy 报错Perhaps your account does not have write access to this directory? 加上sudo 执行sudo pip

win7下安装MYSQL报错:"MYSQL 服务无法启动"的3534问题

win7下安装MYSQL,只到"net start mysql"这一步报错:3534的错误: 是直接官网下载的压缩文件.不是安装文件. 解决方法: 1:环境变量PATH添加完成(例如:h:\mysql\\bin 2:在mysql目录下,新建data目录. 3:在mysql目录下 新建新建一个默认配置文件my.ini. 内容: [mysql]# 设置mysql客户端默认字符集default-character-set=utf8 [mysqld]#设置3306端口port = 3306 #