我已经能够通过#mup设置。我得到以下错误;
Meteor Up: Production Quality Meteor Deployments
------------------------------------------------
Started TaskList: Setup (linux)
[212.1.213.20] - Installing Node.js
[212.1.213.20] â Installing Node.js: FAILED
-----------------------------------STDERR-----------------------------------
Warning: Permanently added '212.1.213.20' (RSA) to the list of known hosts.
stdin: is not a tty
sudo: sorry, you must have a tty to run sudo
sudo: sorry, you must have a tty to run sudo
sudo: sorry, you must have a tty to run sudo
sudo: sorry, you must have a tty to run sudo
-----------------------------------STDOUT-----------------------------------
----------------------------------------------------------------------------
Completed TaskList: Setup (linux)我发现了很多关于错误stdin: is not a tty的信息,但它们对我来说都没有多大意义。
发布于 2015-02-17 10:11:49
打开/etc/sudoers文件,找到显示Defaults requiretty的行,并将其更改为Defaults !requiretty。
这将全局禁用tty要求。
https://stackoverflow.com/questions/25953917
复制相似问题