我在我的笔记本电脑上安装了ubuntu来处理流星,但流星不起作用。
我是从官方网站下载的:
> curl https://install.meteor.com/ | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 4504 0 4504 0 0 1659 0 --:--:-- 0:00:02 --:--:-- 1658Removing your existing Meteor installation.
100 4504 0 4504 0 0 1539 0 --:--:-- 0:00:02 --:--:-- 1539
Downloading Meteor distribution
######################################################################## 100.0%
Meteor 0.9.3 has been installed in your home directory (~/.meteor).
Writing a launcher script to /usr/local/bin/meteor for your convenience.
This may prompt for your password.
To get started fast:
$ meteor create ~/my_cool_app
$ cd ~/my_cool_app
$ meteor
Or see the docs at:
docs.meteor.com
PC:~$ cd work/buildpulse-cerebus/
PC:~/work/buildpulse-cerebus$ meteor
^C
PC:~/work/buildpulse-cerebus$ meteor update
^C
PC:~/work/buildpulse-cerebus$ sudo meteor
安装后我改为我的目录(现有的流星应用程序只是克隆它),当我运行流星时,没有任何事情发生。
如果我创建新的meteor应用程序它运行良好,为什么它不能与现有应用程序一起使用。
答案 0 :(得分:1)
由于可用内存耗尽,您的进程可能会被Linux内存杀手杀死。当我在我的新DigitalOcean Ubuntu(500Mb内存)计算机上运行“meteor”或“meteor debug”时,它仍然在“下载流星工具”时死于“杀死”消息。没有日志,没有错误消息。
我终于读到某个地方,流星可能需要更多的内存。
因此,此时的解决方案是从硬盘分配交换空间以用作额外内存,或者为具有更大内存的计算机向Digital Ocean支付更多$$$。
我选择了第一个选项并从HDD following this excellent article分配了5GB的交换空间内存,而Meteor现在工作正常。我还学到了一些关于System Admin的东西。
答案 1 :(得分:-1)
您可能忘记复制隐藏的.meteor
目录。
如果您从最初创建的位置复制了应用,则可以看到您正在描述的行为。
要修复它,只需使用隐藏的.meteor
目录复制应用程序。